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 }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{content}}
+
+
+
+
+
+
+
+
+
+
+
Copyright © Guangyao Li
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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