diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 28df5f900b358436f0267334b3e3e9af33f917ba..0000000000000000000000000000000000000000 --- a/.gitattributes +++ /dev/null @@ -1,55 +0,0 @@ -*.7z filter=lfs diff=lfs merge=lfs -text -*.arrow filter=lfs diff=lfs merge=lfs -text -*.bin filter=lfs diff=lfs merge=lfs -text -*.bz2 filter=lfs diff=lfs merge=lfs -text -*.ckpt filter=lfs diff=lfs merge=lfs -text -*.ftz filter=lfs diff=lfs merge=lfs -text -*.gz filter=lfs diff=lfs merge=lfs -text -*.h5 filter=lfs diff=lfs merge=lfs -text -*.joblib filter=lfs diff=lfs merge=lfs -text -*.lfs.* filter=lfs diff=lfs merge=lfs -text -*.lz4 filter=lfs diff=lfs merge=lfs -text -*.mlmodel filter=lfs diff=lfs merge=lfs -text -*.model filter=lfs diff=lfs merge=lfs -text -*.msgpack filter=lfs diff=lfs merge=lfs -text -*.npy filter=lfs diff=lfs merge=lfs -text -*.npz filter=lfs diff=lfs merge=lfs -text -*.onnx filter=lfs diff=lfs merge=lfs -text -*.ot filter=lfs diff=lfs merge=lfs -text -*.parquet filter=lfs diff=lfs merge=lfs -text -*.pb filter=lfs diff=lfs merge=lfs -text -*.pickle filter=lfs diff=lfs merge=lfs -text -*.pkl filter=lfs diff=lfs merge=lfs -text -*.pt filter=lfs diff=lfs merge=lfs -text -*.pth filter=lfs diff=lfs merge=lfs -text -*.rar filter=lfs diff=lfs merge=lfs -text -*.safetensors filter=lfs diff=lfs merge=lfs -text -saved_model/**/* filter=lfs diff=lfs merge=lfs -text -*.tar.* filter=lfs diff=lfs merge=lfs -text -*.tar filter=lfs diff=lfs merge=lfs -text -*.tflite filter=lfs diff=lfs merge=lfs -text -*.tgz filter=lfs diff=lfs merge=lfs -text -*.wasm filter=lfs diff=lfs merge=lfs -text -*.xz filter=lfs diff=lfs merge=lfs -text -*.zip filter=lfs diff=lfs merge=lfs -text -*.zst filter=lfs diff=lfs merge=lfs -text -*tfevents* filter=lfs diff=lfs merge=lfs -text -# Audio files - uncompressed -*.pcm filter=lfs diff=lfs merge=lfs -text -*.sam filter=lfs diff=lfs merge=lfs -text -*.raw filter=lfs diff=lfs merge=lfs -text -# Audio files - compressed -*.aac filter=lfs diff=lfs merge=lfs -text -*.flac filter=lfs diff=lfs merge=lfs -text -*.mp3 filter=lfs diff=lfs merge=lfs -text -*.ogg filter=lfs diff=lfs merge=lfs -text -*.wav filter=lfs diff=lfs merge=lfs -text -# Image files - uncompressed -*.bmp filter=lfs diff=lfs merge=lfs -text -*.gif filter=lfs diff=lfs merge=lfs -text -*.png filter=lfs diff=lfs merge=lfs -text -*.tiff filter=lfs diff=lfs merge=lfs -text -# Image files - compressed -*.jpg filter=lfs diff=lfs merge=lfs -text -*.jpeg filter=lfs diff=lfs merge=lfs -text -*.webp filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md index e7eab5e20a18a896a9771b7ddd458aef17f149f9..140c28ee72af7a70bdd8e94c3905703f99d9e14d 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,16 @@ CC-By-NC-4.0 The language of the data is primarily English. +## Getting Started + +### Creating the dataset + +Run the following command to download the images and create the dataset: + +```python3 create_dataset.py``` + +You will find the images in `images_new` and the dataset in `youtube_new.json`. + ## Dataset Structure ### Data Instances diff --git a/create_dataset.py b/create_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..ad2a93254525b7ea254b6f2140dc6530a0c6ec16 --- /dev/null +++ b/create_dataset.py @@ -0,0 +1,58 @@ +import subprocess +import csv +import json +from PIL import Image +import os +import pandas as pd + +def check_image(image_id, image_directory): + """ + Check if an image with a given ID is properly downloaded. + :param image_id: The ID of the image. + :param image_directory: Directory where the image is stored. + :return: True if the image is downloaded and valid, False otherwise. + """ + # Constructing the file path (assuming images are in .jpg format) + file_path = os.path.join(image_directory, f"{image_id}.jpg") + + # Check if the file exists + if not os.path.exists(file_path): + print(f"Image {image_id} not found.") + return False + + # Try opening the image + try: + with Image.open(file_path) as img: + img.verify() # Verify if it's a correct image + # print(f"Image {image_id} is valid.") + return True + except (IOError, SyntaxError) as e: + print(f"Image {image_id} is corrupted: {e}") + return False + +subprocess.run(['bash', 'download_img.sh']) + +csv_file_name = "youtube_new.csv" +json_file_name = "youtube_new.json" +json_structure = { + "dataset_type": "test", + "dataset_name": "youtube", + "dataset_version": "0.0.2", + "data": [] +} + +check_df = pd.read_csv(csv_file_name) +check_df_cleaned = check_df.drop_duplicates(subset=['video_id']) +print(f"Creating {check_df.shape[0]} questions {check_df_cleaned.shape[0]} unique images...") + +with open(csv_file_name, 'r') as csv_file: + csv_reader = csv.DictReader(csv_file) + for row in csv_reader: + if check_image(row['video_id'], 'images_new'): + row['video_classes'] = row['video_classes'].split(',') + row['answers'] = row['answers'].split(',') + json_structure["data"].append(row) + else: + pass +with open(json_file_name, 'w') as json_file: + json.dump(json_structure, json_file, indent=4) diff --git a/data.json b/data.json deleted file mode 100644 index 04a2aba7cc500f93315b63f4afa5a2f2c21bffb3..0000000000000000000000000000000000000000 --- a/data.json +++ /dev/null @@ -1,1263 +0,0 @@ -{ - "dataset_type": "test", - "dataset_name": "mlpc-youtube", - "dataset_version": "0.0.1", - "data": [ - { - "video_id": "dxbVdyVYGcQ", - "caption": "", - "question": "What city is listed on the jersey of the player farthest to the right?", - "video_classes": [ - "sports" - ], - "answers": [ - "memphis" - ], - "video_link": "https://www.youtube.com/watch?v=dxbVdyVYGcQ" - }, - { - "video_id": "dbf-xGWJ4wA", - "caption": "", - "question": "How many points did Stephen Curry score in these video highlights?", - "video_classes": [ - "sports" - ], - "answers": [ - "50", - "50 points", - "50 pts", - "50 pt" - ], - "video_link": "https://www.youtube.com/watch?v=dbf-xGWJ4wA" - }, - { - "video_id": "NLA6-QnMOsU", - "caption": "", - "question": "What did the person on the left say, according to the text box?", - "video_classes": [ - "sports" - ], - "answers": [ - "it's game over" - ], - "video_link": "https://www.youtube.com/watch?v=NLA6-QnMOsU" - }, - { - "video_id": "0Q80gJA2Kao", - "caption": "", - "question": "What was Tom Brady's rank in 2022 based on this image?", - "video_classes": [ - "sports" - ], - "answers": [ - "1", - "number 1", - "#1", - "number one" - ], - "video_link": "https://www.youtube.com/watch?v=0Q80gJA2Kao" - }, - { - "video_id": "3eVaHYFp8rc", - "caption": "", - "question": "What is the name of this interview on Netflix?", - "video_classes": [ - "sports" - ], - "answers": [ - "quarterbacks on quarterbacks" - ], - "video_link": "https://www.youtube.com/watch?v=3eVaHYFp8rc" - }, - { - "video_id": "6YqygpSEtsI", - "caption": "", - "question": "Based on this image, who is the sponsor of this video?", - "video_classes": [ - "sports" - ], - "answers": [ - "geico" - ], - "video_link": "https://www.youtube.com/watch?v=6YqygpSEtsI" - }, - { - "video_id": "HjBo--1n8lI", - "caption": "", - "question": "Which session of Super Bowl halftime show is this?", - "video_classes": [ - "sports" - ], - "answers": [ - "57", - "LVII", - "57th" - ], - "video_link": "https://www.youtube.com/watch?v=HjBo--1n8lI" - }, - { - "video_id": "OLhoAm-zGLM", - "caption": "", - "question": "What caption was used in this image to describe the child's emotion?", - "video_classes": [ - "sports" - ], - "answers": [ - "bye dad" - ], - "video_link": "https://www.youtube.com/watch?v=OLhoAm-zGLM" - }, - { - "video_id": "dDcXhA5hAw4", - "caption": "", - "question": "Who is the sponsor of this training camp video?", - "video_classes": [ - "sports" - ], - "answers": [ - "honda" - ], - "video_link": "https://www.youtube.com/watch?v=dDcXhA5hAw4" - }, - { - "video_id": "phCtvkiI9F0", - "caption": "", - "question": "What was the sport that the eight players playing mentioned in this video?", - "video_classes": [ - "sports" - ], - "answers": [ - "football" - ], - "video_link": "https://www.youtube.com/watch?v=phCtvkiI9F0" - }, - { - "video_id": "9rhadTURsrw", - "caption": "", - "question": "Who is the sponsor of this halftime show?", - "video_classes": [ - "sports" - ], - "answers": [ - "pepsi" - ], - "video_link": "https://www.youtube.com/watch?v=9rhadTURsrw" - }, - { - "video_id": "x369hGXJVDc", - "caption": "", - "question": "Which card is the referee giving out?", - "video_classes": [ - "sports" - ], - "answers": [ - "red", - "red card" - ], - "video_link": "https://www.youtube.com/watch?v=x369hGXJVDc" - }, - { - "video_id": "niig5KcPFDU", - "caption": "", - "question": "Is this a men's or women's soccer game?", - "video_classes": [ - "sports" - ], - "answers": [ - "women", - "woman" - ], - "video_link": "https://www.youtube.com/watch?v=niig5KcPFDU" - }, - { - "video_id": "ikz6XOVvj8k", - "caption": "", - "question": "What did the commentator say about this fight?", - "video_classes": [ - "sports" - ], - "answers": [ - "it's a stupid fight", - "stupid" - ], - "video_link": "https://www.youtube.com/watch?v=ikz6XOVvj8k" - }, - { - "video_id": "DCu9xawHJaw", - "caption": "", - "question": "What is the brand name of the basketball on that robot's shoulder?", - "video_classes": [ - "technology" - ], - "answers": [ - "wilson" - ], - "video_link": "https://www.youtube.com/watch?v=DCu9xawHJaw" - }, - { - "video_id": "yeOthSRu2T0", - "caption": "", - "question": "What is the name of the beef that the man is holding?", - "video_classes": [ - "food" - ], - "answers": [ - "wagyu", - "steak", - "wagyu steak" - ], - "video_link": "https://www.youtube.com/watch?v=yeOthSRu2T0" - }, - { - "video_id": "I4gWrboTXwA", - "caption": "", - "question": "Which two countries' wings are being compared in this video?", - "video_classes": [ - "food" - ], - "answers": [ - "korea and japan", - "japan and korea", - "korea vs japan", - "japan vs korea" - ], - "video_link": "https://www.youtube.com/watch?v=I4gWrboTXwA" - }, - { - "video_id": "hxwpkM5w3Cc", - "caption": "", - "question": "For which organization does the man wearing the blue cap work?", - "video_classes": [ - "entertainment" - ], - "answers": [ - "fbi", - "federal bureau of investigation" - ], - "video_link": "https://www.youtube.com/watch?v=hxwpkM5w3Cc" - }, - { - "video_id": "eBKVWnjuQKA", - "caption": "", - "question": "Which airline company is sponsoring the blue and red jersey?", - "video_classes": [ - "sports" - ], - "answers": [ - "qatar airways", - "qatar" - ], - "video_link": "https://www.youtube.com/watch?v=eBKVWnjuQKA" - }, - { - "video_id": "0LhoYwUQ7VM", - "caption": "", - "question": "Who is tha player standing on the far right?", - "video_classes": [ - "sports" - ], - "answers": [ - "neymar jr", - "neymar" - ], - "video_link": "https://www.youtube.com/watch?v=0LhoYwUQ7VM" - }, - { - "video_id": "Zlzi7tsrrh4", - "caption": "", - "question": "What is the price of the steak that the guy is going to try?", - "video_classes": [ - "food" - ], - "answers": [ - "$125", - "125" - ], - "video_link": "https://www.youtube.com/watch?v=Zlzi7tsrrh4" - }, - { - "video_id": "CwzaVzIhgmk", - "caption": "", - "question": "What food is the guy going to talk about?", - "video_classes": [ - "food" - ], - "answers": [ - "onion pasta", - "pasta" - ], - "video_link": "https://www.youtube.com/watch?v=CwzaVzIhgmk" - }, - { - "video_id": "JCfI9Xlj7Io", - "caption": "", - "question": "In which country is this video being taken?", - "video_classes": [ - "geography" - ], - "answers": [ - "australia" - ], - "video_link": "https://www.youtube.com/watch?v=JCfI9Xlj7Io" - }, - { - "video_id": "jaHd1Fm5zl0", - "caption": "", - "question": "How many top fair food are going to be presented in this video?", - "video_classes": [ - "food" - ], - "answers": [ - "50", - "fifty" - ], - "video_link": "https://www.youtube.com/watch?v=jaHd1Fm5zl0" - }, - { - "video_id": "pWUzkxtoJ2I", - "caption": "", - "question": "Which two countries' street food are being compared in this video?", - "video_classes": [ - "food" - ], - "answers": [ - "japan and spain", - "spain and japan" - ], - "video_link": "https://www.youtube.com/watch?v=pWUzkxtoJ2I" - }, - { - "video_id": "myv7yydtCKc", - "caption": "", - "question": "Will this video talk about junk food?", - "video_classes": [ - "food" - ], - "answers": [ - "yes" - ], - "video_link": "https://www.youtube.com/watch?v=myv7yydtCKc" - }, - { - "video_id": "aircAruvnKk", - "caption": "", - "question": "Will this video talk about computer security?", - "video_classes": [ - "academic" - ], - "answers": [ - "no" - ], - "video_link": "https://www.youtube.com/watch?v=aircAruvnKk&t=2s" - }, - { - "video_id": "5q87K1WaoFI", - "caption": "", - "question": "How many levels of difficulty in machine learning will this video discuss?", - "video_classes": [ - "academic" - ], - "answers": [ - "5", - "five" - ], - "video_link": "https://www.youtube.com/watch?v=5q87K1WaoFI" - }, - { - "video_id": "nLRL_NcnK-4", - "caption": "", - "question": "To which college does this tutorial belong?", - "video_classes": [ - "academic" - ], - "answers": [ - "harvard" - ], - "video_link": "https://www.youtube.com/watch?v=nLRL_NcnK-4" - }, - { - "video_id": "aywZrzNaKjs", - "caption": "", - "question": "How long is this video in minutes?", - "video_classes": [ - "academic" - ], - "answers": [ - "13", - "thirteen", - "13 min", - "thirteen minutes" - ], - "video_link": "https://www.youtube.com/watch?v=aywZrzNaKjs" - }, - { - "video_id": "cXpj8JoF29A", - "caption": "", - "question": "Which two counties are being compared in this video?", - "video_classes": [ - "geography" - ], - "answers": [ - "usa and china", - "china and usa", - "united states and china", - "china and united states" - ], - "video_link": "https://www.youtube.com/watch?v=cXpj8JoF29A" - }, - { - "video_id": "GJr9ITHsOsM", - "caption": "", - "question": "Which continent will this video talk about?", - "video_classes": [ - "geography" - ], - "answers": [ - "europe" - ], - "video_link": "https://www.youtube.com/watch?v=GJr9ITHsOsM" - }, - { - "video_id": "w7TI-XYMzmQ", - "caption": "", - "question": "Which style of music will this video present?", - "video_classes": [ - "music" - ], - "answers": [ - "pop" - ], - "video_link": "https://www.youtube.com/watch?v=w7TI-XYMzmQ" - }, - { - "video_id": "-skZ3lbEBww", - "caption": "", - "question": "Which style of music will this video present?", - "video_classes": [ - "music" - ], - "answers": [ - "blues" - ], - "video_link": "https://www.youtube.com/watch?v=-skZ3lbEBww" - }, - { - "video_id": "yTgSQ2AQGAI", - "caption": "", - "question": "What is the singer of this song?", - "video_classes": [ - "music" - ], - "answers": [ - "lady gaga" - ], - "video_link": "https://www.youtube.com/watch?v=yTgSQ2AQGAI" - }, - { - "video_id": "5vfL2NzVtaQ", - "caption": "", - "question": "Which country's history will this video talk about?", - "video_classes": [ - "history" - ], - "answers": [ - "uk", - "united kingdom" - ], - "video_link": "https://www.youtube.com/watch?v=5vfL2NzVtaQ" - }, - { - "video_id": "CskfvgEItPA", - "caption": "", - "question": "Which country's history will this video talk about?", - "video_classes": [ - "history" - ], - "answers": [ - "egypt", - "ancient egypt" - ], - "video_link": "https://www.youtube.com/watch?v=CskfvgEItPA" - }, - { - "video_id": "70Qi4Nk3aJc", - "caption": "", - "question": "Which planet will this video talk about?", - "video_classes": [ - "astronomy" - ], - "answers": [ - "mars" - ], - "video_link": "https://www.youtube.com/watch?v=70Qi4Nk3aJc" - }, - { - "video_id": "sGy60LO9cN4", - "caption": "", - "question": "Which two countries is this war between?", - "video_classes": [ - "history" - ], - "answers": [ - "britain and rome", - "rome and britain" - ], - "video_link": "https://www.youtube.com/watch?v=sGy60LO9cN4" - }, - { - "video_id": "YeB-1F-UKO0", - "caption": "", - "question": "Will this video talk about the history of chess?", - "video_classes": [ - "history" - ], - "answers": [ - "yes" - ], - "video_link": "https://www.youtube.com/watch?v=YeB-1F-UKO0" - }, - { - "video_id": "jvsXQ7ytj3o", - "caption": "", - "question": "How many movies are being introduced in this video?", - "video_classes": [ - "movie" - ], - "answers": [ - "10", - "ten" - ], - "video_link": "https://www.youtube.com/watch?v=jvsXQ7ytj3o" - }, - { - "video_id": "jvsXQ7ytj3o", - "caption": "", - "question": "Which country's movies will this video discuss?", - "video_classes": [ - "movie" - ], - "answers": [ - "germany", "german" - ], - "video_link": "https://www.youtube.com/watch?v=jvsXQ7ytj3o" - }, - { - "video_id": "Fwi34MiTj1Y", - "caption": "", - "question": "Which soccer player will this video talk about?", - "video_classes": [ - "movie" - ], - "answers": [ - "cristiano ronaldo" - ], - "video_link": "https://www.youtube.com/watch?v=Fwi34MiTj1Y" - }, - { - "video_id": "v4CA65JyaVA", - "caption": "", - "question": "Which country will this video talk about?", - "video_classes": [ - "geography" - ], - "answers": [ - "norway" - ], - "video_link": "https://www.youtube.com/watch?v=v4CA65JyaVA" - }, - { - "video_id": "ERBbFqALDdM", - "caption": "", - "question": "Which transportation will this video talk about?", - "video_classes": [ - "transportation" - ], - "answers": [ - "subway" - ], - "video_link": "https://www.youtube.com/watch?v=ERBbFqALDdM" - }, - { - "video_id": "ELy9fOX8vtc", - "caption": "", - "question": "Which city's transportation will this video talk about?", - "video_classes": [ - "transportation" - ], - "answers": [ - "hong kong" - ], - "video_link": "https://www.youtube.com/watch?v=ELy9fOX8vtc" - }, - { - "video_id": "tyK6hS4xn3Y", - "caption": "", - "question": "Which two transportations are being compared in this video?", - "video_classes": [ - "transportation" - ], - "answers": [ - "trains and pods", - "pods and trains", - "trains vs pods", - "pods vs trains" - ], - "video_link": "https://www.youtube.com/watch?v=tyK6hS4xn3Y" - }, - { - "video_id": "mvmuCPvRoWQ", - "caption": "", - "question": "Which theory will this video talk about?", - "video_classes": [ - "academic" - ], - "answers": [ - "group theory", - "group" - ], - "video_link": "https://www.youtube.com/watch?v=mvmuCPvRoWQ" - }, - { - "video_id": "hrTQipWp6co", - "caption": "", - "question": "Will this video teach me how to use github?", - "video_classes": [ - "academic" - ], - "answers": [ - "yes" - ], - "video_link": "https://www.youtube.com/watch?v=hrTQipWp6co" - }, - { - "video_id": "T53EyLPj4UM", - "caption": "", - "question": "Which company will this video talk about?", - "video_classes": [ - "business company" - ], - "answers": [ - "google" - ], - "video_link": "https://www.youtube.com/watch?v=T53EyLPj4UM" - }, - { - "video_id": "8JJ101D3knE", - "caption": "", - "question": "Is this video for beginners learning Git?", - "video_classes": [ - "academic" - ], - "answers": [ - "yes" - ], - "video_link": "https://www.youtube.com/watch?v=8JJ101D3knE" - }, - { - "video_id": "en6YPAgc6WM", - "caption": "", - "question": "If I want to learn Java, is this video the right choice?", - "video_classes": [ - "academic" - ], - "answers": [ - "no" - ], - "video_link": "https://www.youtube.com/watch?v=en6YPAgc6WM" - }, - { - "video_id": "EcVZVel6nS0", - "caption": "", - "question": "There are two types of chefs in this competition: one is a professional chef. What's the other one?", - "video_classes": [ - "food" - ], - "answers": [ - "homecook", - "home cook" - ], - "video_link": "https://www.youtube.com/watch?v=EcVZVel6nS0" - }, - { - "video_id": "upKrkNlq__0", - "caption": "", - "question": "In which city did this person eat the fried chicken?", - "video_classes": [ - "food" - ], - "answers": [ - "los angeles", - "la" - ], - "video_link": "https://www.youtube.com/watch?v=upKrkNlq__0" - }, - { - "video_id": "7zi0bi-RDj4", - "caption": "", - "question": "What type of steak is this person eating?", - "video_classes": [ - "food" - ], - "answers": [ - "golden", - "golden steak" - ], - "video_link": "https://www.youtube.com/watch?v=7zi0bi-RDj4" - }, - { - "video_id": "F2U0H9vTEgI", - "caption": "", - "question": "At which restaurant did this man have his 'all-you-can-eat' buffet?", - "video_classes": [ - "food" - ], - "answers": [ - "pizza hut" - ], - "video_link": "https://www.youtube.com/watch?v=F2U0H9vTEgI" - }, - { - "video_id": "4h_tDMhzNrA", - "caption": "", - "question": "What is the name of this show?", - "video_classes": [ - "food" - ], - "answers": [ - "kitchen nightmares", - "kitchen nightmare" - ], - "video_link": "https://www.youtube.com/watch?v=4h_tDMhzNrA" - }, - { - "video_id": "NGbFtTYQpus", - "caption": "", - "question": "What is the name of this master chef?", - "video_classes": [ - "food" - ], - "answers": [ - "jon yao" - ], - "video_link": "https://www.youtube.com/watch?v=NGbFtTYQpus" - }, - { - "video_id": "paZNnygxUiY", - "caption": "", - "question": "What is the name on the blue jersey on the right?", - "video_classes": [ - "sports" - ], - "answers": [ - "kevin" - ], - "video_link": "https://www.youtube.com/watch?v=paZNnygxUiY" - }, - { - "video_id": "bBo2L_yyhuo", - "caption": "", - "question": "Who is the sponsor of the team wearing the blue and white jersey?", - "video_classes": [ - "sports" - ], - "answers": [ - "visa" - ], - "video_link": "https://www.youtube.com/watch?v=bBo2L_yyhuo" - }, - { - "video_id": "avnBnnfSVoc", - "caption": "", - "question": "Which store is the woman shopping at?", - "video_classes": [ - "shopping" - ], - "answers": [ - "ross" - ], - "video_link": "https://www.youtube.com/watch?v=avnBnnfSVoc" - }, - { - "video_id": "_4KNOp7egC8", - "caption": "", - "question": "Which store are the women shopping at?", - "video_classes": [ - "shopping" - ], - "answers": [ - "target" - ], - "video_link": "https://www.youtube.com/watch?v=_4KNOp7egC8" - }, - { - "video_id": "zR7qajWj3xc", - "caption": "", - "question": "What type of shoes does this store sell?", - "video_classes": [ - "shopping" - ], - "answers": [ - "sneaker", - "sneakers" - ], - "video_link": "https://www.youtube.com/watch?v=zR7qajWj3xc" - }, - { - "video_id": "w9Co2LAtJIc", - "caption": "", - "question": "Which store is the woman shopping at?", - "video_classes": [ - "shopping" - ], - "answers": [ - "sephora" - ], - "video_link": "https://www.youtube.com/watch?v=w9Co2LAtJIc" - }, - { - "video_id": "wu8TKc66pgM", - "caption": "", - "question": "Which style of music will this video present?", - "video_classes": [ - "music" - ], - "answers": [ - "jazz" - ], - "video_link": "https://www.youtube.com/watch?v=wu8TKc66pgM" - }, - { - "video_id": "68J6G2vrgcc", - "caption": "", - "question": "Which country's supermarkets are presented in this video?", - "video_classes": [ - "geography" - ], - "answers": [ - "china" - ], - "video_link": "https://www.youtube.com/watch?v=68J6G2vrgcc" - }, - { - "video_id": "BA9Y6_zMHj8", - "caption": "", - "question": "Which country's supermarkets are presented in this video?", - "video_classes": [ - "geography" - ], - "answers": [ - "canada" - ], - "video_link": "https://www.youtube.com/watch?v=BA9Y6_zMHj8" - }, - { - "video_id": "gqOetXxZGpc", - "caption": "", - "question": "Which country's supermarkets are presented in this video?", - "video_classes": [ - "geography" - ], - "answers": [ - "germany" - ], - "video_link": "https://www.youtube.com/watch?v=gqOetXxZGpc" - }, - { - "video_id": "eX8lCtNLFHY", - "caption": "", - "question": "Which country's supermarkets are presented in this video?", - "video_classes": [ - "geography" - ], - "answers": [ - "japan" - ], - "video_link": "https://www.youtube.com/watch?v=eX8lCtNLFHY" - }, - { - "video_id": "xCNuczjpsJ4", - "caption": "", - "question": "Which store is presented in this video?", - "video_classes": [ - "shopping" - ], - "answers": [ - "walmart" - ], - "video_link": "https://www.youtube.com/watch?v=xCNuczjpsJ4" - }, - { - "video_id": "Ex5_d0NyWO8", - "caption": "", - "question": "Which city is presented in this video?", - "video_classes": [ - "geography" - ], - "answers": [ - "toronto" - ], - "video_link": "https://www.youtube.com/watch?v=Ex5_d0NyWO8" - }, - { - "video_id": "Z7FJQok__HE", - "caption": "", - "question": "Which two planets are presented in this video?", - "video_classes": [ - "astronomy" - ], - "answers": [ - "pluto and mars", - "mars and pluto" - ], - "video_link": "https://www.youtube.com/watch?v=Z7FJQok__HE" - }, - { - "video_id": "ZEyAs3NWH4A", - "caption": "", - "question": "Which planet are presented in this video?", - "video_classes": [ - "astronomy" - ], - "answers": [ - "mars" - ], - "video_link": "https://www.youtube.com/watch?v=ZEyAs3NWH4A" - }, - { - "video_id": "Rf5E2FSFOjU", - "caption": "", - "question": "Which planet are presented in this video?", - "video_classes": [ - "astronomy" - ], - "answers": [ - "jupiter" - ], - "video_link": "https://www.youtube.com/watch?v=Rf5E2FSFOjU" - }, - { - "video_id": "D5XPuS-Y0fg", - "caption": "", - "question": "Which planet are presented in this video?", - "video_classes": [ - "astronomy" - ], - "answers": [ - "pluto" - ], - "video_link": "https://www.youtube.com/watch?v=D5XPuS-Y0fg" - }, - { - "video_id": "R5pYI0vjI6k", - "caption": "", - "question": "Which planet are presented in this video?", - "video_classes": [ - "astronomy" - ], - "answers": [ - "neptune" - ], - "video_link": "https://www.youtube.com/watch?v=R5pYI0vjI6k" - }, - { - "video_id": "bgqGdIoa52s", - "caption": "", - "question": "What game is presented in this video?", - "video_classes": [ - "entertainment" - ], - "answers": [ - "spider-man", - "spider-man 2", - "spider man", - "spider man 2" - ], - "video_link": "https://www.youtube.com/watch?v=bgqGdIoa52s" - }, - { - "video_id": "QRwK5BakVS0", - "caption": "", - "question": "Which instrument is used to play these songs in this video?", - "video_classes": [ - "music" - ], - "answers": [ - "piano" - ], - "video_link": "https://www.youtube.com/watch?v=QRwK5BakVS0" - }, - { - "video_id": "WakQ6W_RtwE", - "caption": "", - "question": "How many songs are going to be played in this video?", - "video_classes": [ - "music" - ], - "answers": [ - "forty", - "40" - ], - "video_link": "https://www.youtube.com/watch?v=WakQ6W_RtwE" - }, - { - "video_id": "OPID_b1k_cw", - "caption": "", - "question": "Which company will this video talk about?", - "video_classes": [ - "business company" - ], - "answers": [ - "nvidia" - ], - "video_link": "https://www.youtube.com/watch?v=OPID_b1k_cw" - }, - { - "video_id": "5AKl_cEB26c", - "caption": "", - "question": "Which company's product will be introduced in this video?", - "video_classes": [ - "business company" - ], - "answers": [ - "meta" - ], - "video_link": "https://www.youtube.com/watch?v=5AKl_cEB26c" - }, - { - "video_id": "K6zV9XnadGg", - "caption": "", - "question": "Which company will this video talk about?", - "video_classes": [ - "business company" - ], - "answers": [ - "intel" - ], - "video_link": "https://www.youtube.com/watch?v=K6zV9XnadGg" - }, - { - "video_id": "VbeM8Lf7s5A", - "caption": "", - "question": "Which company will this video talk about?", - "video_classes": [ - "business company" - ], - "answers": [ - "apple" - ], - "video_link": "https://www.youtube.com/watch?v=VbeM8Lf7s5A" - }, - { - "video_id": "1ZOw4MLOiio", - "caption": "", - "question": "Which company will this video talk about?", - "video_classes": [ - "business company" - ], - "answers": [ - "microsoft" - ], - "video_link": "https://www.youtube.com/watch?v=1ZOw4MLOiio" - }, - { - "video_id": "N2osuAknnXs", - "caption": "", - "question": "What product is Microsoft introducing in this video?", - "video_classes": [ - "technology" - ], - "answers": [ - "codi" - ], - "video_link": "https://www.youtube.com/watch?v=N2osuAknnXs" - }, - { - "video_id": "TX9qSaGXFyg", - "caption": "", - "question": "What product is Apple introducing in this video?", - "video_classes": [ - "technology" - ], - "answers": [ - "vision pro" - ], - "video_link": "https://www.youtube.com/watch?v=TX9qSaGXFyg" - }, - { - "video_id": "8nQZU1WgwcE", - "caption": "", - "question": "Which country is fighting with Britain in the war depicted in this video?", - "video_classes": [ - "history" - ], - "answers": [ - "zulu" - ], - "video_link": "https://www.youtube.com/watch?v=8nQZU1WgwcE" - }, - { - "video_id": "szFjxmY7jQA", - "caption": "", - "question": "Which civilization is introduced in this video?", - "video_classes": [ - "history" - ], - "answers": [ - "sumer", - "sumerians" - ], - "video_link": "https://www.youtube.com/watch?v=szFjxmY7jQA" - }, - { - "video_id": "ISNeEoFlyuM", - "caption": "", - "question": "Which airline is this video talking about?", - "video_classes": [ - "transportation" - ], - "answers": [ - "lufthansa" - ], - "video_link": "https://www.youtube.com/watch?v=ISNeEoFlyuM" - }, - { - "video_id": "JFPHMHNI_nM", - "caption": "", - "question": "To which company does the train in this video belong?", - "video_classes": [ - "transportation" - ], - "answers": [ - "brightline" - ], - "video_link": "https://www.youtube.com/watch?v=JFPHMHNI_nM" - }, - { - "video_id": "oCl9pbiCUt4", - "caption": "", - "question": "What type of train will this video discuss?", - "video_classes": [ - "transportation" - ], - "answers": [ - "doubleheaded steam train", - "double-headed steam train" - ], - "video_link": "https://www.youtube.com/watch?v=oCl9pbiCUt4" - }, - { - "video_id": "UAx70NI5aaM", - "caption": "", - "question": "Which business company's stock is the news mentioning?", - "video_classes": [ - "technology" - ], - "answers": [ - "intel", - "intc" - ], - "video_link": "https://www.youtube.com/watch?v=UAx70NI5aaM" - }, - { - "video_id": "OiwlPEggq9I", - "caption": "", - "question": "What kind of test is this video about?", - "video_classes": [ - "technology" - ], - "answers": [ - "gaming test", - "gaming" - ], - "video_link": "https://www.youtube.com/watch?v=OiwlPEggq9I" - }, - { - "video_id": "gMsQO5u7-NQ", - "caption": "", - "question": "Who is calling?", - "video_classes": [ - "technology" - ], - "answers": [ - "bathany", - "bethany" - ], - "video_link": "https://www.youtube.com/watch?v=gMsQO5u7-NQ" - }, - { - "video_id": "Py_Z4makIpQ", - "caption": "", - "question": "What is free as mentioned in this back to school offer?", - "video_classes": [ - "technology" - ], - "answers": [ - "airpods", - "airpod" - ], - "video_link": "https://www.youtube.com/watch?v=Py_Z4makIpQ" - }, - { - "video_id": "KQ8HIIot8tQ", - "caption": "", - "question": "What's the name of the brand on this speaker?", - "video_classes": [ - "technology" - ], - "answers": [ - "marshall" - ], - "video_link": "https://www.youtube.com/watch?v=KQ8HIIot8tQ" - }, - { - "video_id": "aMYSdwcybIg", - "caption": "", - "question": "There are two devices being compared on this Python test, what chip is the right hand side computer using?", - "video_classes": [ - "technology" - ], - "answers": [ - "m2 pro", - "m2pro" - ], - "video_link": "https://www.youtube.com/watch?v=aMYSdwcybIg" - }, - { - "video_id": "JzpUfRv45yY", - "caption": "", - "question": "According to the tweet shown, which mouse is the best mouse for Mac?", - "video_classes": [ - "technology" - ], - "answers": [ - "magic mouse", - "magic" - ], - "video_link": "https://www.youtube.com/watch?v=JzpUfRv45yY" - }, - { - "video_id": "NHyEjW192Rc", - "caption": "", - "question": "Does this man seem to be trying to promote Meesho?", - "video_classes": [ - "technology" - ], - "answers": [ - "yes" - ], - "video_link": "https://www.youtube.com/watch?v=NHyEjW192Rc" - }, - { - "video_id": "Qn05e9Yjg0Y", - "caption": "", - "question": "Which sport's tech products is the video trying to review?", - "video_classes": [ - "technology" - ], - "answers": [ - "football" - ], - "video_link": "https://www.youtube.com/watch?v=Qn05e9Yjg0Y" - } - ] -} \ No newline at end of file diff --git a/download_img.sh b/download_img.sh new file mode 100644 index 0000000000000000000000000000000000000000..f2f703a3176ce732b8e0ba9b55928d4e674bd295 --- /dev/null +++ b/download_img.sh @@ -0,0 +1,58 @@ +#!/bin/bash + +echo "Downloading images..." + +mkdir -p images_new + +# Read the CSV file +input="youtube_new.csv" +row_num=0 # Initialize a row counter + +while IFS=',' read -r line || [[ -n "$line" ]] +do + row_num=$((row_num + 1)) # Increment the row counter + + # Skip the first row + if [ $row_num -eq 1 ]; then + continue + fi + + # Locate the "video_id" column (assuming it's the first column) + video_id=$(echo $line | cut -d',' -f 1) + + url="https://img.youtube.com/vi/${video_id}/maxresdefault.jpg" + output="images_new/${video_id}.jpg" + wget -O "$output" "$url" 2>/dev/null + + # Check if wget was successful and the file is a proper image + if [[ $? -ne 0 || ! $(file --mime-type -b "$output") =~ ^image/ ]]; then + echo "Failed to download or invalid image for video_id: $video_id" + rm -f "$output" # Optional: remove the invalid file + fi +done < "$input" + + + + +# #!/bin/bash + +# mkdir -p images_new + +# # Read the CSV file +# input="youtube_new.csv" +# while IFS=',' read -r line || [[ -n "$line" ]] +# do +# # Locate the "video_id" column (assuming it's the first column) +# video_id=$(echo $line | cut -d',' -f 1) + +# url="https://img.youtube.com/vi/${video_id}/maxresdefault.jpg" +# output="images_new/${video_id}.jpg" +# wget -O "$output" "$url" 2>/dev/null + +# # Check if wget was successful and the file is a proper image +# if [[ $? -ne 0 || ! $(file --mime-type -b "$output") =~ ^image/ ]]; then +# echo "Failed to download or invalid image for video_id: $video_id" +# rm -f "$output" # Optional: remove the invalid file +# fi +# done < "$input" + diff --git a/img/-skZ3lbEBww.jpg b/img/-skZ3lbEBww.jpg deleted file mode 100644 index 330a46e9214fea38e386de826e9201abc8341dcc..0000000000000000000000000000000000000000 --- a/img/-skZ3lbEBww.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:29b8ee676107d348657f5404f056832a81dbd89110087ac75c9863bcfddae441 -size 234801 diff --git a/img/0LhoYwUQ7VM.jpg b/img/0LhoYwUQ7VM.jpg deleted file mode 100644 index 2c4b8e1d432df12a87bab47538e403ee77949c12..0000000000000000000000000000000000000000 --- a/img/0LhoYwUQ7VM.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e48a4b3eae2098c6da5e63bd37f4a88b45d94cc0520d3e0d5471694db22586bb -size 127787 diff --git a/img/0Q80gJA2Kao.jpg b/img/0Q80gJA2Kao.jpg deleted file mode 100644 index 1ee991f9cfafb5b8d303fc90b4c910e0375058bf..0000000000000000000000000000000000000000 --- a/img/0Q80gJA2Kao.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:db5421708bc0dcf7ada352537d8b374e81346ea8e93f198a7c3ffe724483734e -size 162819 diff --git a/img/1ZOw4MLOiio.jpg b/img/1ZOw4MLOiio.jpg deleted file mode 100644 index 4bdf4ec1ef83618ac7d2997a160111882923b83b..0000000000000000000000000000000000000000 --- a/img/1ZOw4MLOiio.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:30611ae34220fd63aade69fa4ef0d5e2debc0d2e4cd53f28062c3edec5c6b5ba -size 93557 diff --git a/img/3eVaHYFp8rc.jpg b/img/3eVaHYFp8rc.jpg deleted file mode 100644 index 4dd74fed606030e28d83139bc46468b5a921b20c..0000000000000000000000000000000000000000 --- a/img/3eVaHYFp8rc.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e3639e6fb5132973e4837924dc7e8d1ba2d13b74b4b095bc7dc13e99c1b9405f -size 99792 diff --git a/img/4h_tDMhzNrA.jpg b/img/4h_tDMhzNrA.jpg deleted file mode 100644 index 75cfb2e52108dd8482a39f3fd3c3ddd92cf356fd..0000000000000000000000000000000000000000 --- a/img/4h_tDMhzNrA.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dbbdd452a77acafee0abfa88beb4a46404656c32a73b82dcd7f2cc16a7af2399 -size 106413 diff --git a/img/5AKl_cEB26c.jpg b/img/5AKl_cEB26c.jpg deleted file mode 100644 index 28baeec424e6d3752913ccc6cc4845a55afbe584..0000000000000000000000000000000000000000 --- a/img/5AKl_cEB26c.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c850543be945a5d67e16631bf7993983ed2fccf3130c26861fb90875fc553b72 -size 76349 diff --git a/img/5q87K1WaoFI.jpg b/img/5q87K1WaoFI.jpg deleted file mode 100644 index 3876c53f7c2c027393c85cd2cc4a8310254796aa..0000000000000000000000000000000000000000 --- a/img/5q87K1WaoFI.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:850d9498607e154c2cede986e7693bffdaca59bc2cc8d3f6b4428b0dbe896eb2 -size 142094 diff --git a/img/5vfL2NzVtaQ.jpg b/img/5vfL2NzVtaQ.jpg deleted file mode 100644 index 03d808b29cd62d0ed39af60b567891dd101b9ff5..0000000000000000000000000000000000000000 --- a/img/5vfL2NzVtaQ.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8224eefac00e135f2c2ad44d4d2b2b6750f2cac08c6c654f6c4d5ab0df6af152 -size 140356 diff --git a/img/68J6G2vrgcc.jpg b/img/68J6G2vrgcc.jpg deleted file mode 100644 index 3517c95a469609d928eafb0ccd66d4f1ae1d0e04..0000000000000000000000000000000000000000 --- a/img/68J6G2vrgcc.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d10507aea9c99edaa3da0169ff090407a34a3cef39e04c83346a323219ac44b3 -size 168268 diff --git a/img/6YqygpSEtsI.jpg b/img/6YqygpSEtsI.jpg deleted file mode 100644 index fd9bec50268ac3dc2785c14fdbb3ad2d0b240a31..0000000000000000000000000000000000000000 --- a/img/6YqygpSEtsI.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:50d7ef36505a2e92abc2e2c473f92f7acc57e430f3ef9ccd230f0ee2a7658811 -size 141863 diff --git a/img/70Qi4Nk3aJc.jpg b/img/70Qi4Nk3aJc.jpg deleted file mode 100644 index f31b9c8a06ca879642fc9b7d9bfedabfa48d47bb..0000000000000000000000000000000000000000 --- a/img/70Qi4Nk3aJc.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:29f4ac4063ac8b82af9e4a0d662c51ad13deae4e5c69360f6f1668215f801708 -size 141417 diff --git a/img/7zi0bi-RDj4.jpg b/img/7zi0bi-RDj4.jpg deleted file mode 100644 index dab20e8b628320592dc7ffbdc314f2d6d1158808..0000000000000000000000000000000000000000 --- a/img/7zi0bi-RDj4.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:84e0e01839b12edbbd9a842f000df4933236a56576d97178e20b279d4f3b925a -size 122507 diff --git a/img/8JJ101D3knE.jpg b/img/8JJ101D3knE.jpg deleted file mode 100644 index 5770ad269dbcaac7ab6de44dbfdf016eb28c41e8..0000000000000000000000000000000000000000 --- a/img/8JJ101D3knE.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4a440f8ee6d8e0f198cb1666282dfcf56067484d57840cc5c77255253ad0388 -size 66707 diff --git a/img/8nQZU1WgwcE.jpg b/img/8nQZU1WgwcE.jpg deleted file mode 100644 index 755abd5fbaff10cd41bfac3c7f392adda6b86df6..0000000000000000000000000000000000000000 --- a/img/8nQZU1WgwcE.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e35efa9793e4e016a52ace7823b99661194aa377c248bc1e05b549e72a2cac43 -size 148779 diff --git a/img/9rhadTURsrw.jpg b/img/9rhadTURsrw.jpg deleted file mode 100644 index 6d733257f1bc7832e5c53cfefe96de470d722c71..0000000000000000000000000000000000000000 --- a/img/9rhadTURsrw.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5459cd5963de3a3553ae0c03d8c9bf51e1cc499443ae0ebec9b84e89056aeb25 -size 116712 diff --git a/img/BA9Y6_zMHj8.jpg b/img/BA9Y6_zMHj8.jpg deleted file mode 100644 index cb8149579f6179ada1eb0e63e6dd110703c224e5..0000000000000000000000000000000000000000 --- a/img/BA9Y6_zMHj8.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:07c650a86123a767f1bda2ff6af2ec53c2c235f34effe9750e24ac7d97a79d37 -size 240884 diff --git a/img/CskfvgEItPA.jpg b/img/CskfvgEItPA.jpg deleted file mode 100644 index 691411799e652d85faf776afb2ed0b2de5c03f25..0000000000000000000000000000000000000000 --- a/img/CskfvgEItPA.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b6cd97a45a3a58ee8fed61567f3bde4004d6eafba377ba7ac8a0763bed62371d -size 161681 diff --git a/img/CwzaVzIhgmk.jpg b/img/CwzaVzIhgmk.jpg deleted file mode 100644 index a328d25c55fa4f700071719386c18d9fffa4f701..0000000000000000000000000000000000000000 --- a/img/CwzaVzIhgmk.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c15cfe63f2fe82dfaccd346701c8f4a279f710209fa5eb0015bc35b4fe6ee7a7 -size 181227 diff --git a/img/D5XPuS-Y0fg.jpg b/img/D5XPuS-Y0fg.jpg deleted file mode 100644 index ab3065fe752a07d2297c2afb2af4427c9c491548..0000000000000000000000000000000000000000 --- a/img/D5XPuS-Y0fg.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:36143b8a67f44d2788fe88b89db7468ddf2af4afa318324d321c9ccf9ce7e1bc -size 391133 diff --git a/img/DCu9xawHJaw.jpg b/img/DCu9xawHJaw.jpg deleted file mode 100644 index ea025fe4299cb83b55c656a5f0eaa22cc81fc5c4..0000000000000000000000000000000000000000 --- a/img/DCu9xawHJaw.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b46c43055eee9e11cff4f0acb84ab9916515a39a37f0899a24ecebdfbcbf4c5e -size 205189 diff --git a/img/ELy9fOX8vtc.jpg b/img/ELy9fOX8vtc.jpg deleted file mode 100644 index c31e2f53c6930abbc5e0e7048cc395bcd1507aee..0000000000000000000000000000000000000000 --- a/img/ELy9fOX8vtc.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:655ba3580b1eb4bf710fc144fd1c5dcde7ece92a18a2dbb3abbccdce0639dce8 -size 122618 diff --git a/img/ERBbFqALDdM.jpg b/img/ERBbFqALDdM.jpg deleted file mode 100644 index f6c80029f0e7460d3b9c8a07b3b544d2b4d8f7c5..0000000000000000000000000000000000000000 --- a/img/ERBbFqALDdM.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6dc290a6e62d9801a09af1734da65a0ec02efb32eecae261f548aa4f8a95f6bb -size 157694 diff --git a/img/EcVZVel6nS0.jpg b/img/EcVZVel6nS0.jpg deleted file mode 100644 index 314729d5b1ccfe6528f7c34c8d70118960ca2d9c..0000000000000000000000000000000000000000 --- a/img/EcVZVel6nS0.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:53bf8b1f670a60199ad0898185245989f23830ae268e23751fdbc8678845984d -size 123614 diff --git a/img/Ex5_d0NyWO8.jpg b/img/Ex5_d0NyWO8.jpg deleted file mode 100644 index 123925066a64933dfb81a09978b5742c98bde4e3..0000000000000000000000000000000000000000 --- a/img/Ex5_d0NyWO8.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:61f4b5c7eb374c538658313650db67874b474ca404532351d9bec9fabe702d13 -size 277087 diff --git a/img/F2U0H9vTEgI.jpg b/img/F2U0H9vTEgI.jpg deleted file mode 100644 index a0d9cfc78949b37b28065d996580b8e940f56ea5..0000000000000000000000000000000000000000 --- a/img/F2U0H9vTEgI.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:464bb6e97715a1dd7278f063bd641b3350463419aa3cab55e2fd8ac8040f7498 -size 161637 diff --git a/img/Fwi34MiTj1Y.jpg b/img/Fwi34MiTj1Y.jpg deleted file mode 100644 index c4bbd8d02adc3702d907c64441aeaaf52de2e27c..0000000000000000000000000000000000000000 --- a/img/Fwi34MiTj1Y.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed5531e13a312fd82120675c2c02c660760662e5de945ad5fea98a7da1eb86f2 -size 148489 diff --git a/img/GJr9ITHsOsM.jpg b/img/GJr9ITHsOsM.jpg deleted file mode 100644 index 7277837cce30b4d985541160781f2f92b3250180..0000000000000000000000000000000000000000 --- a/img/GJr9ITHsOsM.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:11af77fd41d84f789a6fc7468beb6b18884c47b85ecda6a1a4188858d1f3a4c6 -size 146018 diff --git a/img/HjBo--1n8lI.jpg b/img/HjBo--1n8lI.jpg deleted file mode 100644 index fa8ba3784480f29a98d2b413f9b65857e8aee6f9..0000000000000000000000000000000000000000 --- a/img/HjBo--1n8lI.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a002d722bc349affd1694e9d578a7764de3e49e0c825384517d3ce8f0a4a32d8 -size 134278 diff --git a/img/I4gWrboTXwA.jpg b/img/I4gWrboTXwA.jpg deleted file mode 100644 index d576596cde3d7998302c6a5c04e713c217ef9d66..0000000000000000000000000000000000000000 --- a/img/I4gWrboTXwA.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2b3db1d4adc4019bb52822dda9f1ec09d9ece8387e48a4cd311d7ef04a57f9f0 -size 130980 diff --git a/img/ISNeEoFlyuM.jpg b/img/ISNeEoFlyuM.jpg deleted file mode 100644 index 6146b3719de0f594896f0ce3f5a22005a87cfe27..0000000000000000000000000000000000000000 --- a/img/ISNeEoFlyuM.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ff819fb7911617f771d38974e03c7507ed8e460315f983d392cfc1a4a3df26ff -size 89193 diff --git a/img/JCfI9Xlj7Io.jpg b/img/JCfI9Xlj7Io.jpg deleted file mode 100644 index 15f8b78a1f5d3da18edeb192da26359747fbb553..0000000000000000000000000000000000000000 --- a/img/JCfI9Xlj7Io.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7c3f7669fad6268b1f208e6e320f2a5186e7bda4b1b7162b661b73f0df78f2d4 -size 185408 diff --git a/img/JFPHMHNI_nM.jpg b/img/JFPHMHNI_nM.jpg deleted file mode 100644 index e561c1244f43087862f25c11259a1f35a5e7d6c2..0000000000000000000000000000000000000000 --- a/img/JFPHMHNI_nM.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0b486f81c7d136f9f2e378b5f0561b96a031a51ca87b6101031354b40787104f -size 97973 diff --git a/img/JzpUfRv45yY.jpg b/img/JzpUfRv45yY.jpg deleted file mode 100644 index fa620dd4171326a4da80cd10f3e934894d338715..0000000000000000000000000000000000000000 --- a/img/JzpUfRv45yY.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:665cd2c0f1670af89b2d83a4191da70de9f5c886d8b7ad7cf9bd2b1ac5e0fbc8 -size 113947 diff --git a/img/K6zV9XnadGg.jpg b/img/K6zV9XnadGg.jpg deleted file mode 100644 index d117eba5c8e30f9ad8d87401bbc10c3afdf11fbf..0000000000000000000000000000000000000000 --- a/img/K6zV9XnadGg.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:00976a1260da16d8c76e3e6485b8c3786fb60ed60acfd26b725f38b04d54b654 -size 90542 diff --git a/img/KQ8HIIot8tQ.jpg b/img/KQ8HIIot8tQ.jpg deleted file mode 100644 index 3527c67c7f71e5dfec62822c05451cba4af8c295..0000000000000000000000000000000000000000 --- a/img/KQ8HIIot8tQ.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1714251abe0cbafc2a115e5a1d641dca34d449bf69396756bb9d734439bc3727 -size 298873 diff --git a/img/N2osuAknnXs.jpg b/img/N2osuAknnXs.jpg deleted file mode 100644 index 2ca8d309e846d40aeba55a8fd83a70469eead617..0000000000000000000000000000000000000000 --- a/img/N2osuAknnXs.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2286e1b956d894e3caf3e931ff146c377114f932a3334704ca4b548382f2d9ac -size 127871 diff --git a/img/NGbFtTYQpus.jpg b/img/NGbFtTYQpus.jpg deleted file mode 100644 index 795a593c917920126deca01e42d75982de766020..0000000000000000000000000000000000000000 --- a/img/NGbFtTYQpus.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:50373849a1009799accc34d6053f9f191098b439fe9634effd3b3786aba8ff4f -size 141184 diff --git a/img/NHyEjW192Rc.jpg b/img/NHyEjW192Rc.jpg deleted file mode 100644 index c7038a2d97c1fb3b6fc54954430e5ad6980ec15b..0000000000000000000000000000000000000000 --- a/img/NHyEjW192Rc.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a115a6718721f93ab00f82191bcb96afa1bfb3b4e586c98e82f93983b4c1d098 -size 112520 diff --git a/img/NLA6-QnMOsU.jpg b/img/NLA6-QnMOsU.jpg deleted file mode 100644 index 8c803d14004cee703ec13dd5496ae380300bc132..0000000000000000000000000000000000000000 --- a/img/NLA6-QnMOsU.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e38cc560a0601feaa5e132a13baa09f6026c257fd1059720dfd009e34177f91d -size 329599 diff --git a/img/OLhoAm-zGLM.jpg b/img/OLhoAm-zGLM.jpg deleted file mode 100644 index dbb63424e379345b6a0d41f47c0b152a082924fd..0000000000000000000000000000000000000000 --- a/img/OLhoAm-zGLM.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:08ea55265247855e040d4ee1e5676bb7fe38a50e98c27d4691048798ab6358fd -size 107165 diff --git a/img/OPID_b1k_cw.jpg b/img/OPID_b1k_cw.jpg deleted file mode 100644 index 17bb8d42afa89f8e2f79c632c877c21be30dd823..0000000000000000000000000000000000000000 --- a/img/OPID_b1k_cw.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:681f4e08480bd71304b8381475c2f5cd9b66606f8cf1389bbb4780d8063d1859 -size 131199 diff --git a/img/OiwlPEggq9I.jpg b/img/OiwlPEggq9I.jpg deleted file mode 100644 index 8605d2a20b84ee8f89a598ed32c60ace1685e9f4..0000000000000000000000000000000000000000 --- a/img/OiwlPEggq9I.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ac5768bb80322e62c058ed093403c717b9c660d82bf8181b718416b2fff2f999 -size 112342 diff --git a/img/Py_Z4makIpQ.jpg b/img/Py_Z4makIpQ.jpg deleted file mode 100644 index c8102224ea75d88e0fc10a495581ee280f0572e4..0000000000000000000000000000000000000000 --- a/img/Py_Z4makIpQ.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4f2e3c980f712b33c042b12e64ecb91c39822cab17f5686a78c86e227b385fb7 -size 159193 diff --git a/img/QRwK5BakVS0.jpg b/img/QRwK5BakVS0.jpg deleted file mode 100644 index 978456dbcda250c2316ae60423cc05e2ee1c395e..0000000000000000000000000000000000000000 --- a/img/QRwK5BakVS0.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:760de9f4702173a6744bb61ae3359137a4deb69d4c75749cad55fbe7d20480de -size 141671 diff --git a/img/Qn05e9Yjg0Y.jpg b/img/Qn05e9Yjg0Y.jpg deleted file mode 100644 index c8219a5540d3ce722c52db448b51f417fa69282d..0000000000000000000000000000000000000000 --- a/img/Qn05e9Yjg0Y.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bc3584f1392604864ba5f9d295aa4afdb45df767134fb44df7891d28c87af2e1 -size 133381 diff --git a/img/R5pYI0vjI6k.jpg b/img/R5pYI0vjI6k.jpg deleted file mode 100644 index fa60dbd55fa82ca411f6ee9d91be70e14bac5b6d..0000000000000000000000000000000000000000 --- a/img/R5pYI0vjI6k.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:09d9935c4c90913fd923bd8229389627d2e5a5abd0cd8554c38b2a7bd32574c7 -size 79727 diff --git a/img/Rf5E2FSFOjU.jpg b/img/Rf5E2FSFOjU.jpg deleted file mode 100644 index aab3002c4aff4576fc2f686841fc7f2a1478bb53..0000000000000000000000000000000000000000 --- a/img/Rf5E2FSFOjU.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5f6ed84b09da9f59c3a7ee715e1728cf3b6d1b297c892de6a469eb960f9bcd0d -size 87133 diff --git a/img/T53EyLPj4UM.jpg b/img/T53EyLPj4UM.jpg deleted file mode 100644 index 397baa510bdf602e375fc987421800f9c9e84a7e..0000000000000000000000000000000000000000 --- a/img/T53EyLPj4UM.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:918b56a26401bed6ea6fa7105cc382ec9ac1301c870a0fb1073aee36b371e55c -size 148471 diff --git a/img/TX9qSaGXFyg.jpg b/img/TX9qSaGXFyg.jpg deleted file mode 100644 index 0b1d7e98bcb73aadd7359087c1b66369612b3198..0000000000000000000000000000000000000000 --- a/img/TX9qSaGXFyg.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4c11e469334f95acd63bcd2bd1cddf8af8d4289b10ed31e42ab2f04ed7e53aac -size 47313 diff --git a/img/UAx70NI5aaM.jpg b/img/UAx70NI5aaM.jpg deleted file mode 100644 index 3255e0cefce06da23436699f00fd201e426ef2d3..0000000000000000000000000000000000000000 --- a/img/UAx70NI5aaM.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f7f2739715a29c0f884ec64905398675439be61dc9b9f199951efc3e9211e40a -size 133199 diff --git a/img/VbeM8Lf7s5A.jpg b/img/VbeM8Lf7s5A.jpg deleted file mode 100644 index d520897baee36e6e042c15b289e1d266e620db21..0000000000000000000000000000000000000000 --- a/img/VbeM8Lf7s5A.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bba33adcfbb8518d61eb2dc345258be7ec6ab26bdd3455ebbe6109428643d9a5 -size 334479 diff --git a/img/WakQ6W_RtwE.jpg b/img/WakQ6W_RtwE.jpg deleted file mode 100644 index c84188c22ccb71ca28b990e938dad693984fa15d..0000000000000000000000000000000000000000 --- a/img/WakQ6W_RtwE.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3c470131daeab7cadf21a42192e725a918c8408877322f4a29fa59ee5271592e -size 68400 diff --git a/img/YeB-1F-UKO0.jpg b/img/YeB-1F-UKO0.jpg deleted file mode 100644 index 2848393d99500b506d6a4bd98fcbbf1a6a7e56c0..0000000000000000000000000000000000000000 --- a/img/YeB-1F-UKO0.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b6c43a788b085237cb360ce3ab6934b2c88675d9feef04c83f9a5e10ec10bc14 -size 91512 diff --git a/img/Z7FJQok__HE.jpg b/img/Z7FJQok__HE.jpg deleted file mode 100644 index c7790d890cba534570d0443c67d8e90a6613db5b..0000000000000000000000000000000000000000 --- a/img/Z7FJQok__HE.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:18acacab10867cc5cdb7d158050fb8db3e2c7caf36f4e5d941c806fe58d30272 -size 167013 diff --git a/img/ZEyAs3NWH4A.jpg b/img/ZEyAs3NWH4A.jpg deleted file mode 100644 index 62fcd5a33306e3c4277932317cd5995a83bcc469..0000000000000000000000000000000000000000 --- a/img/ZEyAs3NWH4A.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60b2d22580813770cb145e55eb291de6ae6c7d33339a51b7654509e5e5cf0333 -size 204250 diff --git a/img/Zlzi7tsrrh4.jpg b/img/Zlzi7tsrrh4.jpg deleted file mode 100644 index 785ca824475a3c4b2b41ec0a6de543495aaea2e5..0000000000000000000000000000000000000000 --- a/img/Zlzi7tsrrh4.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e49a88098f0794403050bb176a5ca3ab6dac6764f345635ffdf95f06710288f9 -size 214088 diff --git a/img/_4KNOp7egC8.jpg b/img/_4KNOp7egC8.jpg deleted file mode 100644 index ff4ac1213a9cd05a3bf6f7fa0df8caae0c73334b..0000000000000000000000000000000000000000 --- a/img/_4KNOp7egC8.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:65c9f2587ee2645eae13609d7ca746421a16ef7e36b1c3558e438bfbbafe9443 -size 151528 diff --git a/img/aMYSdwcybIg.jpg b/img/aMYSdwcybIg.jpg deleted file mode 100644 index 5350f631a4f981d21a72482790fefc178d0cccd2..0000000000000000000000000000000000000000 --- a/img/aMYSdwcybIg.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d124ffe53919cb40baca1d222356683a9411f04ff604f8b2ccfaf6ee8fdcbd97 -size 160013 diff --git a/img/aircAruvnKk.jpg b/img/aircAruvnKk.jpg deleted file mode 100644 index d281bd02f6d07a9327a9d0f51564992329784174..0000000000000000000000000000000000000000 --- a/img/aircAruvnKk.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3e229a5b55b8d4ec00db88dc4dc25ff3b6af1baca9ae66d9918de79301b142a0 -size 147733 diff --git a/img/avnBnnfSVoc.jpg b/img/avnBnnfSVoc.jpg deleted file mode 100644 index 24f2a9c8e936d81eee7107acbb3e0a6a3146cfa5..0000000000000000000000000000000000000000 --- a/img/avnBnnfSVoc.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f8ae54ec0177904246895fd03638a3d1c96f87136b33fdf9981ff88fd93ad4e1 -size 199458 diff --git a/img/aywZrzNaKjs.jpg b/img/aywZrzNaKjs.jpg deleted file mode 100644 index 1e4d53ac9b097c3aa47aaac95ecf90fd6af9d854..0000000000000000000000000000000000000000 --- a/img/aywZrzNaKjs.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1f963be7829e241f2a0104e7a2e62cc88596e3fb03189c7fd2dd8c185b9d59c4 -size 102366 diff --git a/img/bBo2L_yyhuo.jpg b/img/bBo2L_yyhuo.jpg deleted file mode 100644 index 64d82b990436463b0fd6e3cc4be4213065521066..0000000000000000000000000000000000000000 --- a/img/bBo2L_yyhuo.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d4092a48710f19873795079d9aca8fcd15227f90eae187c590d957a9d1c9bc5c -size 254838 diff --git a/img/bgqGdIoa52s.jpg b/img/bgqGdIoa52s.jpg deleted file mode 100644 index 57904d996e71e406332d527ece432f0b35d601a4..0000000000000000000000000000000000000000 --- a/img/bgqGdIoa52s.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a74c50d8798eeabacc2fa201ada5ceafcb7d151bf04cc84935b8cfdfcd9c5ee8 -size 169006 diff --git a/img/cXpj8JoF29A.jpg b/img/cXpj8JoF29A.jpg deleted file mode 100644 index 1d850581cca24ae7c5f93014372947d3c7d4bea1..0000000000000000000000000000000000000000 --- a/img/cXpj8JoF29A.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2164cc4f6521bbce43a1d874f38b141808d6e5dcb3a9a1c0d71b265143ce0185 -size 110078 diff --git a/img/dDcXhA5hAw4.jpg b/img/dDcXhA5hAw4.jpg deleted file mode 100644 index 1645fe35ac7146eb03e2677123978a5ae027efcb..0000000000000000000000000000000000000000 --- a/img/dDcXhA5hAw4.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33c4f50e23462768d12b75c668d541cfbf461b41d7cd78e205a10bb90e5679a2 -size 102173 diff --git a/img/dbf-xGWJ4wA.jpg b/img/dbf-xGWJ4wA.jpg deleted file mode 100644 index 95cdd77a246e49678b62b21fb7e443537e4ce74a..0000000000000000000000000000000000000000 --- a/img/dbf-xGWJ4wA.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8123e3ea598f86db1606032856bc4cabbd8b375e8e26f1dd9595efe346878d97 -size 145004 diff --git a/img/dxbVdyVYGcQ.jpg b/img/dxbVdyVYGcQ.jpg deleted file mode 100644 index 02d1690df905d13d3e2c8d188d435b4d5e9d8f78..0000000000000000000000000000000000000000 --- a/img/dxbVdyVYGcQ.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a26def52deeb74293bf1c4c87bb06fd1cff84cb8cc4757734697e2e4c7dab377 -size 172764 diff --git a/img/eBKVWnjuQKA.jpg b/img/eBKVWnjuQKA.jpg deleted file mode 100644 index 9aae362d180cb7d86eb433e05e1e29037fc5e0d7..0000000000000000000000000000000000000000 --- a/img/eBKVWnjuQKA.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d28f25df332ce130b4c05055ceaaa33df144edfd2d52f629ac9eef6895abd021 -size 126405 diff --git a/img/eX8lCtNLFHY.jpg b/img/eX8lCtNLFHY.jpg deleted file mode 100644 index 4fce4f4576b222eded2b8ea8c067993e4504417f..0000000000000000000000000000000000000000 --- a/img/eX8lCtNLFHY.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ce6cb0673a9abfc85dacdbcf3825c44602605cb6024f99c33251e240b7c3ad50 -size 204814 diff --git a/img/en6YPAgc6WM.jpg b/img/en6YPAgc6WM.jpg deleted file mode 100644 index d96fd339261b4491d99cabf3574a3a8b1eecff7a..0000000000000000000000000000000000000000 --- a/img/en6YPAgc6WM.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:59b9ac03ae36732e2589d50260f92111e4fc9e0b39d08aef7f85bc471b853dfc -size 98568 diff --git a/img/gMsQO5u7-NQ.jpg b/img/gMsQO5u7-NQ.jpg deleted file mode 100644 index 614188a25c809e7c708075a24496c421cf322c52..0000000000000000000000000000000000000000 --- a/img/gMsQO5u7-NQ.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ba565b09097e8aa58803e2436babb78424605971c62473cdb27869f051df6641 -size 47426 diff --git a/img/gqOetXxZGpc.jpg b/img/gqOetXxZGpc.jpg deleted file mode 100644 index 02f0e32e2d311bd0921f90a4dbcc530a37da372b..0000000000000000000000000000000000000000 --- a/img/gqOetXxZGpc.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e0a996d6403f28a45d4d5341cdadf34fa37775e0a077167efe3c4a86781345b5 -size 236446 diff --git a/img/hrTQipWp6co.jpg b/img/hrTQipWp6co.jpg deleted file mode 100644 index a4ff0b1fded026e6084d0d6f102b54924fa9c676..0000000000000000000000000000000000000000 --- a/img/hrTQipWp6co.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b291e4235828036e3fb41757d62110fc79a5a8dd80a3559f2a5f0a924b06c728 -size 69102 diff --git a/img/hxwpkM5w3Cc.jpg b/img/hxwpkM5w3Cc.jpg deleted file mode 100644 index 7378ece87b8267d0762d02a8d24a6e0ec1f731a4..0000000000000000000000000000000000000000 --- a/img/hxwpkM5w3Cc.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b0a2c967a624b6ceaec4351ed0ca3e699e77c5c74fe969e05a6db494c2c4a70f -size 138637 diff --git a/img/ikz6XOVvj8k.jpg b/img/ikz6XOVvj8k.jpg deleted file mode 100644 index 4cd3327be93275c4c3c4316bbc9446d0d4375713..0000000000000000000000000000000000000000 --- a/img/ikz6XOVvj8k.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b32ca61909dd51d00244a88aa144e23fa3352662ea60ced2c1c9168e62facb2a -size 236443 diff --git a/img/jaHd1Fm5zl0.jpg b/img/jaHd1Fm5zl0.jpg deleted file mode 100644 index eae7a3d98858de620c4692116d26477c5c6ccf12..0000000000000000000000000000000000000000 --- a/img/jaHd1Fm5zl0.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:da125332d05f34f34f8d087463bf6e2d429ed7841a0ec2f7eb2e25ab24bd2754 -size 132703 diff --git a/img/jvsXQ7ytj3o.jpg b/img/jvsXQ7ytj3o.jpg deleted file mode 100644 index 60fc78aaaf82a576cf073c252a698a9111f4dec0..0000000000000000000000000000000000000000 --- a/img/jvsXQ7ytj3o.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:56fb19a3cd497f354f0dfca713a072478cda5d900dbe06a5cda93b839e3389bc -size 148122 diff --git a/img/mvmuCPvRoWQ.jpg b/img/mvmuCPvRoWQ.jpg deleted file mode 100644 index 0ab58e83c6c275826b172102df02365df4323f7c..0000000000000000000000000000000000000000 --- a/img/mvmuCPvRoWQ.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5001b6ef06297bf6b5556ae4380a8b9f285f8adec141d1a613fc2ec8a2fd8dd1 -size 36831 diff --git a/img/myv7yydtCKc.jpg b/img/myv7yydtCKc.jpg deleted file mode 100644 index f224f4a27f927394d19c133d87abb6ed1580610c..0000000000000000000000000000000000000000 --- a/img/myv7yydtCKc.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:168135e0676f29c5a2f048b7f4b7e6f4f9646d289cc2d1d5281d5daad9d3d3b9 -size 107958 diff --git a/img/nLRL_NcnK-4.jpg b/img/nLRL_NcnK-4.jpg deleted file mode 100644 index 93e0dce6a5893afbd4b8f6c151d21be2ea65c916..0000000000000000000000000000000000000000 --- a/img/nLRL_NcnK-4.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:41576e421373325890ddbcf337b870089f4f1eead2c4a6ce8244146e9ac3c086 -size 110193 diff --git a/img/niig5KcPFDU.jpg b/img/niig5KcPFDU.jpg deleted file mode 100644 index 1f7d27683aa8c6e90aa7c3d976766257956bfebc..0000000000000000000000000000000000000000 --- a/img/niig5KcPFDU.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9ac6a16571e6757f7c4bb53e83ddd9313d7df100de433f1617e117b36bb9ba3e -size 146343 diff --git a/img/oCl9pbiCUt4.jpg b/img/oCl9pbiCUt4.jpg deleted file mode 100644 index 0c8cf997d1dd99bc97c86ee2e90a3e301168f779..0000000000000000000000000000000000000000 --- a/img/oCl9pbiCUt4.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0e6c575fc40064471691b97b061f87e908d35052641bdcfda016668bc27b4f10 -size 185054 diff --git a/img/pWUzkxtoJ2I.jpg b/img/pWUzkxtoJ2I.jpg deleted file mode 100644 index b4d3f1acf72a338db54baf52bb26ef8a00745e34..0000000000000000000000000000000000000000 --- a/img/pWUzkxtoJ2I.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e94ddb1a1107d462192161e396f2e7917b5977499f3d5c4c3ab62ba646ed228c -size 138065 diff --git a/img/paZNnygxUiY.jpg b/img/paZNnygxUiY.jpg deleted file mode 100644 index 4e02ec271c64a4bdb1782075b2d5988cfc2116a6..0000000000000000000000000000000000000000 --- a/img/paZNnygxUiY.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:112b3a86bc9c7b22d7ec99f860f8e6a89744c8d2da2f32f43502f45527c5c299 -size 76015 diff --git a/img/phCtvkiI9F0.jpg b/img/phCtvkiI9F0.jpg deleted file mode 100644 index 3adfa92f5fc9e47df0705ac0c1ff548dbcf0440b..0000000000000000000000000000000000000000 --- a/img/phCtvkiI9F0.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:122a8994b2143b5442a28034590ac4706a8d83ab2d8c558fb4b821896497e862 -size 128927 diff --git a/img/sGy60LO9cN4.jpg b/img/sGy60LO9cN4.jpg deleted file mode 100644 index 45e7e7f9be7cfd95115c65d6a84104da0394df09..0000000000000000000000000000000000000000 --- a/img/sGy60LO9cN4.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e388dc5a4fe6c1ef78efa203a91c81080f6c4303bb76b44ac5a82853b860e557 -size 131914 diff --git a/img/szFjxmY7jQA.jpg b/img/szFjxmY7jQA.jpg deleted file mode 100644 index f38a3da7840ab171e9046619f21e9e8b51edbccb..0000000000000000000000000000000000000000 --- a/img/szFjxmY7jQA.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7a43d1b5bd6ab5175b2f84e3794322b068addea407b1bb944d80129613f5de4b -size 296695 diff --git a/img/tyK6hS4xn3Y.jpg b/img/tyK6hS4xn3Y.jpg deleted file mode 100644 index 18643bec519cdd6660c03badda7147ed5ffe071e..0000000000000000000000000000000000000000 --- a/img/tyK6hS4xn3Y.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f858a36d0a3161ca4933799313643acd7fcf72c4d6e33c21d51941835ca16cf2 -size 102952 diff --git a/img/upKrkNlq__0.jpg b/img/upKrkNlq__0.jpg deleted file mode 100644 index b8b6ebcb706763fda97530e58383eb0fe4d306b9..0000000000000000000000000000000000000000 --- a/img/upKrkNlq__0.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5ae0ea30faa439eafa5afcca2153c25110870e336812b4d14a3dc191e857fb63 -size 156248 diff --git a/img/v4CA65JyaVA.jpg b/img/v4CA65JyaVA.jpg deleted file mode 100644 index 0469de00cdfc2c34435af0060fd304a633002bab..0000000000000000000000000000000000000000 --- a/img/v4CA65JyaVA.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:27ac680ab213d447d041a9d4fa5d0dfe230fa6ebead4421807711617de94c314 -size 204305 diff --git a/img/video_id.jpg b/img/video_id.jpg deleted file mode 100644 index fc8e42b32efb9a9bf3ae0234a18a948e499490f8..0000000000000000000000000000000000000000 --- a/img/video_id.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 -size 0 diff --git a/img/w7TI-XYMzmQ.jpg b/img/w7TI-XYMzmQ.jpg deleted file mode 100644 index f1aa6f1217067d529498da0a746b9e6caad97444..0000000000000000000000000000000000000000 --- a/img/w7TI-XYMzmQ.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a9686b0838ddf2030dcf8a418502bb2d1cd3d6d9f5383aba06a5d7eaca6b29e0 -size 75362 diff --git a/img/w9Co2LAtJIc.jpg b/img/w9Co2LAtJIc.jpg deleted file mode 100644 index d119c84776265abe6be04fea7eb740f01bd4accd..0000000000000000000000000000000000000000 --- a/img/w9Co2LAtJIc.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9c4b0a9f5664f04e11ea0b2eb34a6b2a0c6d58cca5cb84000abf348118827bf2 -size 228821 diff --git a/img/wu8TKc66pgM.jpg b/img/wu8TKc66pgM.jpg deleted file mode 100644 index 8c3bc17cc4a74425e1853dd1c47a3661eee60b57..0000000000000000000000000000000000000000 --- a/img/wu8TKc66pgM.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4e38c5985380330330b0e7ca15e5113abaf191f2cbb1e52cf9a2b6b0f16cfe4d -size 263016 diff --git a/img/x369hGXJVDc.jpg b/img/x369hGXJVDc.jpg deleted file mode 100644 index 30f15bbbf0f6735338b1fcaf4dd9c008d0bc5218..0000000000000000000000000000000000000000 --- a/img/x369hGXJVDc.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7254d693280aa48a26775cbdcdb7f7238e032ee8c0ce522194db21f4c3829975 -size 131435 diff --git a/img/xCNuczjpsJ4.jpg b/img/xCNuczjpsJ4.jpg deleted file mode 100644 index 4d99f9b7ba73f0e7ba0a7f3a741f985ee91d471f..0000000000000000000000000000000000000000 --- a/img/xCNuczjpsJ4.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5b794152073df981e20012db2724e094a02ad3f07928bda93b477ab2e5072497 -size 148583 diff --git a/img/yTgSQ2AQGAI.jpg b/img/yTgSQ2AQGAI.jpg deleted file mode 100644 index 01110606b0dbd46ba99dd43ba436519446e636e7..0000000000000000000000000000000000000000 --- a/img/yTgSQ2AQGAI.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2d07fee2676ee6c9aaf622bd8079770bbdd153ae07cfbd31d5ef4f073699c698 -size 84369 diff --git a/img/yeOthSRu2T0.jpg b/img/yeOthSRu2T0.jpg deleted file mode 100644 index 962c1d84357c89b6d2816279d644a4ed5f4e8e21..0000000000000000000000000000000000000000 --- a/img/yeOthSRu2T0.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:762fbb9ef61149e2c3d00ac07c213e124ccb42ce88386d9245751a54e99bb36c -size 120131 diff --git a/img/zR7qajWj3xc.jpg b/img/zR7qajWj3xc.jpg deleted file mode 100644 index 4b42e7df17cb3bdda3fef7345a43fb9632102d42..0000000000000000000000000000000000000000 --- a/img/zR7qajWj3xc.jpg +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f0aaa14171a037b6bb4a924123130c41fcdd8bb8f1b9269771651a171451e59f -size 157925 diff --git a/youtube_new.csv b/youtube_new.csv new file mode 100644 index 0000000000000000000000000000000000000000..1d3a1af10eae7e03f81f33632624c650fe2eb542 --- /dev/null +++ b/youtube_new.csv @@ -0,0 +1,401 @@ +video_id,caption,question,video_classes,answers,video_link +dxbVdyVYGcQ,,What city is listed on the jersey of the player farthest to the right?,sports,memphis,https://www.youtube.com/watch?v=dxbVdyVYGcQ +dbf-xGWJ4wA,,How many points did Stephen Curry score in these video highlights?,sports,"50, 50 points, 50 pts, 50 pt",https://www.youtube.com/watch?v=dbf-xGWJ4wA +NLA6-QnMOsU,,"What did the person on the left say, according to the text box?",sports,it's game over,https://www.youtube.com/watch?v=NLA6-QnMOsU +0Q80gJA2Kao,,What was Tom Brady's rank in 2022 based on this image?,sports,"1, number 1, #1",https://www.youtube.com/watch?v=0Q80gJA2Kao +3eVaHYFp8rc,,What is the name of this interview on Netflix?,sports,quarterbacks on quarterbacks,https://www.youtube.com/watch?v=3eVaHYFp8rc +6YqygpSEtsI,,"Based on this image, who is the sponsor of this video?",sports,geico,https://www.youtube.com/watch?v=6YqygpSEtsI +HjBo--1n8lI,,Which Super Bowl halftime show is this?,sports,"57, LVII, 57th",https://www.youtube.com/watch?v=HjBo--1n8lI +OLhoAm-zGLM,,What caption was used in this image to describe the child's emotion?,sports,bye dad,https://www.youtube.com/watch?v=OLhoAm-zGLM +dDcXhA5hAw4,,Who is the sponsor of this training camp video?,sports,honda,https://www.youtube.com/watch?v=dDcXhA5hAw4 +phCtvkiI9F0,,Do fantasy football players like the eight players who will be mentioned in this video?,sports,no,https://www.youtube.com/watch?v=phCtvkiI9F0 +9rhadTURsrw,,Who is the sponsor of this halftime show?,sports,pepsi,https://www.youtube.com/watch?v=9rhadTURsrw +x369hGXJVDc,,Which card is the referee giving out?,sports,"red, red card",https://www.youtube.com/watch?v=x369hGXJVDc +niig5KcPFDU,,Is this a men's or women's soccer game?,sports,"women, woman",https://www.youtube.com/watch?v=niig5KcPFDU +BLrHTHUjPuw,,How long is this video in minutes?,education,"90, ninety",https://www.youtube.com/watch?v=BLrHTHUjPuw +DCu9xawHJaw,,What is the brand name of the basketball on that robot's shoulder?,technology,wilson,https://www.youtube.com/watch?v=DCu9xawHJaw +yeOthSRu2T0,,What kind of beef is the man holding?,food,"wagyu, steak, wagyu steak",https://www.youtube.com/watch?v=yeOthSRu2T0 +I4gWrboTXwA,,Which two countries' wings are being compared in this video?,food,"korea and japan, japan and korea",https://www.youtube.com/watch?v=I4gWrboTXwA +hxwpkM5w3Cc,,For which organization does the man wearing the blue cap work?,entertainment,fbi,https://www.youtube.com/watch?v=hxwpkM5w3Cc +eBKVWnjuQKA,,Which airline company is sponsoring the blue and red jersey?,sports,"qatar airways, qatar",https://www.youtube.com/watch?v=eBKVWnjuQKA +0LhoYwUQ7VM,,Who is the guy standing on the far right?,sports,"neymar jr, neymar",https://www.youtube.com/watch?v=0LhoYwUQ7VM +Zlzi7tsrrh4,,What is the price of the steak that the guy is going to try?,food,"$125, 125",https://www.youtube.com/watch?v=Zlzi7tsrrh4 +CwzaVzIhgmk,,What food is the guy going to talk about?,food,"onion pasta, pasta",https://www.youtube.com/watch?v=CwzaVzIhgmk +JCfI9Xlj7Io,,In which country is this video being taken?,nature,australia,https://www.youtube.com/watch?v=JCfI9Xlj7Io +jaHd1Fm5zl0,,How many types of food are going to be presented in this video?,food,"50, fifty",https://www.youtube.com/watch?v=jaHd1Fm5zl0 +pWUzkxtoJ2I,,Which two countries' street food are being compared in this video?,food,"japan and spain, spain and japan, japan, spain",https://www.youtube.com/watch?v=pWUzkxtoJ2I +myv7yydtCKc,,Will this video talk about junk food?,food,yes,https://www.youtube.com/watch?v=myv7yydtCKc +aircAruvnKk,,Will this video talk about computer security?,education,no,https://www.youtube.com/watch?v=aircAruvnKk&t=2s +5q87K1WaoFI,,How many levels of difficulty in machine learning will this video discuss?,education,"5, five",https://www.youtube.com/watch?v=5q87K1WaoFI +nLRL_NcnK-4,,To which college does this tutorial belong?,education,harvard,https://www.youtube.com/watch?v=nLRL_NcnK-4 +aywZrzNaKjs,,How long is this video in minutes?,education,"13, thirteen, 13 min, thirteen minutes",https://www.youtube.com/watch?v=aywZrzNaKjs +cXpj8JoF29A,,Which two counties are being compared in this video?,nature,"usa and china, china and usa",https://www.youtube.com/watch?v=cXpj8JoF29A +GJr9ITHsOsM,,Which continent will this video talk about?,nature,europe,https://www.youtube.com/watch?v=GJr9ITHsOsM +-skZ3lbEBww,,Which style of music will this video present?,music,blues,https://www.youtube.com/watch?v=-skZ3lbEBww +yTgSQ2AQGAI,,What is the singer of this song?,music,lady gaga,https://www.youtube.com/watch?v=yTgSQ2AQGAI +5vfL2NzVtaQ,,Which country's history will this video talk about?,history,"uk, united kingdom",https://www.youtube.com/watch?v=5vfL2NzVtaQ +CskfvgEItPA,,Which country's history will this video talk about?,history,"egypt, ancient egypt",https://www.youtube.com/watch?v=CskfvgEItPA +70Qi4Nk3aJc,,Which planet will this video talk about?,astronomy,mars,https://www.youtube.com/watch?v=70Qi4Nk3aJc +sGy60LO9cN4,,Which two countries is this war between?,history,"britain and rome, rome and britain",https://www.youtube.com/watch?v=sGy60LO9cN4 +YeB-1F-UKO0,,Will this video talk about the history of chess?,history,yes,https://www.youtube.com/watch?v=YeB-1F-UKO0 +jvsXQ7ytj3o,,entertainment,entertainment,"10, ten",https://www.youtube.com/watch?v=jvsXQ7ytj3o +jvsXQ7ytj3o,,Which country's movies will this video discuss?,entertainment,germany,https://www.youtube.com/watch?v=jvsXQ7ytj3o +Fwi34MiTj1Y,,Which soccer player will this video talk about?,entertainment,cristiano ronaldo,https://www.youtube.com/watch?v=Fwi34MiTj1Y +v4CA65JyaVA,,Which country will this video talk about?,nature,norway,https://www.youtube.com/watch?v=v4CA65JyaVA +ERBbFqALDdM,,Which transportation will this video talk about?,transportation,subway,https://www.youtube.com/watch?v=ERBbFqALDdM +ELy9fOX8vtc,,Which city's transportation will this video talk about?,transportation,hong kong,https://www.youtube.com/watch?v=ELy9fOX8vtc +tyK6hS4xn3Y,,Which two transportations are being compared in this video?,transportation,"trains and pods, pods and trains",https://www.youtube.com/watch?v=tyK6hS4xn3Y +mvmuCPvRoWQ,,Which theory will this video talk about?,education,"group theory, group",https://www.youtube.com/watch?v=mvmuCPvRoWQ +hrTQipWp6co,,Will this video teach me how to use github?,education,yes,https://www.youtube.com/watch?v=hrTQipWp6co +T53EyLPj4UM,,Which company will this video talk about?,technology,google,https://www.youtube.com/watch?v=T53EyLPj4UM +8JJ101D3knE,,Is this video for beginners learning Git?,education,yes,https://www.youtube.com/watch?v=8JJ101D3knE +en6YPAgc6WM,,"If I want to learn Java, is this video the right choice?",education,no,https://www.youtube.com/watch?v=en6YPAgc6WM +EcVZVel6nS0,,There are two types of chefs in this competition: one is a professional chef. What's the other one?,food,"homecook, home cook",https://www.youtube.com/watch?v=EcVZVel6nS0 +upKrkNlq__0,,In which city did this person eat the fried chicken?,food,"los angeles, la",https://www.youtube.com/watch?v=upKrkNlq__0 +7zi0bi-RDj4,,What type of steak is this person eating?,food,"golden, golden steak",https://www.youtube.com/watch?v=7zi0bi-RDj4 +F2U0H9vTEgI,,At which restaurant did this man have his 'all-you-can-eat' buffet?,food,pizza hut,https://www.youtube.com/watch?v=F2U0H9vTEgI +4h_tDMhzNrA,,What is the name of this show?,food,"kitchen nightmares, kitchen nightmare",https://www.youtube.com/watch?v=4h_tDMhzNrA +NGbFtTYQpus,,What is the name of this master chef?,food,jon yao,https://www.youtube.com/watch?v=NGbFtTYQpus +paZNnygxUiY,,What is the name on the blue jersey on the right?,sports,kevin,https://www.youtube.com/watch?v=paZNnygxUiY +bBo2L_yyhuo,,Who is the sponsor of the team wearing the blue and white jersey?,sports,visa,https://www.youtube.com/watch?v=bBo2L_yyhuo +avnBnnfSVoc,,Which store is the woman shopping at?,entertainment,ross,https://www.youtube.com/watch?v=avnBnnfSVoc +_4KNOp7egC8,,Which store are the women shopping at?,entertainment,target,https://www.youtube.com/watch?v=_4KNOp7egC8 +zR7qajWj3xc,,What does this store sell?,entertainment,sneaker,https://www.youtube.com/watch?v=zR7qajWj3xc +w9Co2LAtJIc,,Which store is the woman shopping at?,entertainment,sephora,https://www.youtube.com/watch?v=w9Co2LAtJIc +wu8TKc66pgM,,Which style of music will this video present?,music,jazz,https://www.youtube.com/watch?v=wu8TKc66pgM +68J6G2vrgcc,,Which country's supermarkets are presented in this video?,nature,china,https://www.youtube.com/watch?v=68J6G2vrgcc +BA9Y6_zMHj8,,Which country's supermarkets are presented in this video?,nature,canada,https://www.youtube.com/watch?v=BA9Y6_zMHj8 +gqOetXxZGpc,,Which country's supermarkets are presented in this video?,nature,germany,https://www.youtube.com/watch?v=gqOetXxZGpc +eX8lCtNLFHY,,Which country's supermarkets are presented in this video?,nature,japan,https://www.youtube.com/watch?v=eX8lCtNLFHY +xCNuczjpsJ4,,Which store is presented in this video?,entertainment,walmart,https://www.youtube.com/watch?v=xCNuczjpsJ4 +Ex5_d0NyWO8,,Which city is presented in this video?,nature,toronto,https://www.youtube.com/watch?v=Ex5_d0NyWO8 +Z7FJQok__HE,,Which two planets are presented in this video?,astronomy,"pluto and mars, mars and pluto",https://www.youtube.com/watch?v=Z7FJQok__HE +ZEyAs3NWH4A,,Which planet are presented in this video?,astronomy,mars,https://www.youtube.com/watch?v=ZEyAs3NWH4A +Rf5E2FSFOjU,,Which planet are presented in this video?,astronomy,jupiter,https://www.youtube.com/watch?v=Rf5E2FSFOjU +D5XPuS-Y0fg,,Which planet are presented in this video?,astronomy,pluto,https://www.youtube.com/watch?v=D5XPuS-Y0fg +R5pYI0vjI6k,,Which planet are presented in this video?,astronomy,neptune,https://www.youtube.com/watch?v=R5pYI0vjI6k +bgqGdIoa52s,,What game is presented in this video?,entertainment,"spider-man, spider-man 2, spider man, spider man 2",https://www.youtube.com/watch?v=bgqGdIoa52s +QRwK5BakVS0,,Which instrument is used to play these songs in this video?,music,piano,https://www.youtube.com/watch?v=QRwK5BakVS0 +WakQ6W_RtwE,,How many songs are going to be played in this video?,music,"forty, 40",https://www.youtube.com/watch?v=WakQ6W_RtwE +OPID_b1k_cw,,Which company will this video talk about?,technology,nvidia,https://www.youtube.com/watch?v=OPID_b1k_cw +5AKl_cEB26c,,Which company's product will be introduced in this video?,technology,meta,https://www.youtube.com/watch?v=5AKl_cEB26c +K6zV9XnadGg,,Which company will this video talk about?,technology,intel,https://www.youtube.com/watch?v=K6zV9XnadGg +VbeM8Lf7s5A,,Which company will this video talk about?,technology,apple,https://www.youtube.com/watch?v=VbeM8Lf7s5A +1ZOw4MLOiio,,Which company will this video talk about?,technology,microsoft,https://www.youtube.com/watch?v=1ZOw4MLOiio +N2osuAknnXs,,What product is Microsoft introducing in this video?,technology,codi,https://www.youtube.com/watch?v=N2osuAknnXs +TX9qSaGXFyg,,What product is Apple introducing in this video?,technology,vision pro,https://www.youtube.com/watch?v=TX9qSaGXFyg +8nQZU1WgwcE,,Which country is fighting with Britain in the war depicted in this video?,history,zulu,https://www.youtube.com/watch?v=8nQZU1WgwcE +szFjxmY7jQA,,Which civilization is introduced in this video?,history,"sumer, sumerians",https://www.youtube.com/watch?v=szFjxmY7jQA +ISNeEoFlyuM,,Which airline is this video talking about?,transportation,lufthansa,https://www.youtube.com/watch?v=ISNeEoFlyuM +JFPHMHNI_nM,,To which company does the train in this video belong?,transportation,brightline,https://www.youtube.com/watch?v=JFPHMHNI_nM +oCl9pbiCUt4,,What type of train will this video discuss?,transportation,doubleheaded steam,https://www.youtube.com/watch?v=oCl9pbiCUt4 +UAx70NI5aaM,,Which business company's stock is the news mentioning?,technology,"intel, intc",https://www.youtube.com/watch?v=UAx70NI5aaM +OiwlPEggq9I,,What kind of test is this video about?,technology,"gaming test, gaming",https://www.youtube.com/watch?v=OiwlPEggq9I +gMsQO5u7-NQ,,Who is calling?,technology,bathany,https://www.youtube.com/watch?v=gMsQO5u7-NQ +Py_Z4makIpQ,,What is free as mentioned in this back to school offer?,technology,airpods,https://www.youtube.com/watch?v=Py_Z4makIpQ +KQ8HIIot8tQ,,What's the name of the brand on this speaker?,technology,marshall,https://www.youtube.com/watch?v=KQ8HIIot8tQ +aMYSdwcybIg,,"There are two devices being compared on this Python test, what chip is the right hand side computer using?",technology,"m2 pro, m2pro",https://www.youtube.com/watch?v=aMYSdwcybIg +JzpUfRv45yY,,"According to the tweet shown, which mouse is the best mouse for Mac?",technology,"magic mouse, magic",https://www.youtube.com/watch?v=JzpUfRv45yY +NHyEjW192Rc,,Does this man seem to be trying to promote Meesho?,technology,yes,https://www.youtube.com/watch?v=NHyEjW192Rc +Qn05e9Yjg0Y,,Which sport's tech products is the video trying to review?,technology,football,https://www.youtube.com/watch?v=Qn05e9Yjg0Y +shoVsQhou-8,,"Based on the text, who is the musician on the poster?",music,mozart,https://www.youtube.com/watch?v=shoVsQhou-8 +LOqczSsYzIk,,"Based on the text, how many courses does this Omakase have?",food,"15, fifteen",https://www.youtube.com/watch?v=LOqczSsYzIk +4B-ayCPBCzc,,What type of music is this video about?,music,"jazz, rainy jazz",https://www.youtube.com/watch?v=4B-ayCPBCzc +uM9iLQJzMO0,,Which sport's rules are being explained in this video?,sports,"american football, football",https://www.youtube.com/watch?v=uM9iLQJzMO0 +UxgKy1Q4J_0,,"Does the left-hand-side car's plate contains ""CD""?",cars,yes,https://www.youtube.com/watch?v=UxgKy1Q4J_0 +eAeon4jt7Cw,,Which brand is the car in the middle according to the text?,cars,bugatti,https://www.youtube.com/watch?v=eAeon4jt7Cw +Gk2ocXjjm2g,,"According to the text, what's the name of the man in the image?",entertainment,tony stark,https://www.youtube.com/watch?v=Gk2ocXjjm2g +Z-GDQAxIA24,,What's the unit of measurament used to test the difference between the three cars according to the image?,cars,"mph, mile per hour, miles per hour",https://www.youtube.com/watch?v=Z-GDQAxIA24 +m2LuECb5DRM,,How much is the car according to the text of this image?,cars,100000,https://www.youtube.com/watch?v=m2LuECb5DRM +ckib1ABJ_sM,,"There is a number in this picture, what is it?",cars,17,https://www.youtube.com/watch?v=ckib1ABJ_sM +_B4fWDhc3eY,,education,education,2021,https://www.youtube.com/watch?v=_B4fWDhc3eY +UjAbpzyrlNc,,"Based on the text, what are they playing?",entertainment,"hide n seek, hide and seek",https://www.youtube.com/watch?v=UjAbpzyrlNc +N0v3BhJiNNQ,,"According to the text, what's the name of the show?",food,"kitchen nightmares, kitchen nightmare",https://www.youtube.com/watch?v=N0v3BhJiNNQ +rgXtLVFzFmo,,What is the chef trying to teach you to cook in this video?,food,steak,https://www.youtube.com/watch?v=rgXtLVFzFmo +VIwwE1QrsWw,,What is not allowed in this video?,food,"hats, hat",https://www.youtube.com/watch?v=VIwwE1QrsWw +VueEQ5KlYyk,,What kind of food is being reviewed in this video according to the text?,food,"nuggets, nugget",https://www.youtube.com/watch?v=VueEQ5KlYyk +_uk_6vfqwTA,,What is this video about?,history,"world war 2, wwii, ww2",https://www.youtube.com/watch?v=_uk_6vfqwTA +jB8hIhTw25k,,"Based on the text, is it a full game highlights?",sports,yes,https://www.youtube.com/watch?v=jB8hIhTw25k +l401JMjTZW8,,"Based on the text, which airline company is this video about?",airlines,emirates,https://www.youtube.com/watch?v=l401JMjTZW8 +pu55yLeo02E,,"According to the text, what is the model of this aircraft?",airlines,"boeing 747, 747",https://www.youtube.com/watch?v=pu55yLeo02E +s8mqtCFFra8,,"Based on the text, which airline company is this video about?",airlines,"united, united airlines",https://www.youtube.com/watch?v=s8mqtCFFra8 +Eb0FWCX-ERI,,"According to the text, where is the destination of this flight?",airlines,brazil,https://www.youtube.com/watch?v=Eb0FWCX-ERI +GOnLvU09IXg,,"Based on the text, which airline company is this video about?",airlines,"qatar, qatar airways",https://www.youtube.com/watch?v=GOnLvU09IXg +jTBQyItE3_c,,Is the current score tied?,sports,yes,https://www.youtube.com/watch?v=jTBQyItE3_c +tFDA-AqxMQg,,How old the the player on the right based on the text?,sports,38,https://www.youtube.com/watch?v=tFDA-AqxMQg +BurnEwc7QPQ,,How many points did this player score?,sports,41,https://www.youtube.com/watch?v=BurnEwc7QPQ +gdtetu4nnZc,,What type of basketball game is it based on the text?,sports,"fiba, world cup",https://www.youtube.com/watch?v=gdtetu4nnZc +27vKcpFb8kU,,Which year's NBA draft is it?,sports,2018,https://www.youtube.com/watch?v=27vKcpFb8kU +ZSiXZxVpVhs,,How many technology trends in 2023 is this video mentioning?,technology,7,https://www.youtube.com/watch?v=ZSiXZxVpVhs +tOcoGNZaUAM,,Which type of battery is this video about?,technology,space,https://www.youtube.com/watch?v=tOcoGNZaUAM +NrmMk1Myrxc,,What's the name of this new Amazon technology?,technology,"go, amazon go, amazongo",https://www.youtube.com/watch?v=NrmMk1Myrxc +Tdm-7qAYPC0,,"According to the text, what is free in this video?",technology,internet,https://www.youtube.com/watch?v=Tdm-7qAYPC0 +DMzn31vr_J8,,Who is this person trying to call based on the text?,law,"mommy, mom",https://www.youtube.com/watch?v=DMzn31vr_J8 +j_UqNC8vqgI,,Which month of 2023 is this video about according to the text?,law,may,https://www.youtube.com/watch?v=j_UqNC8vqgI +B1XqKdENH5o,,"According to the text, which state in the United States is the laws for?",law,california,https://www.youtube.com/watch?v=B1XqKdENH5o +VJGyndssqHg,,Which week is the match?,sports,"9, nine",https://www.youtube.com/watch?v=VJGyndssqHg +WR0OV_TaLs0,,Which two countries will participate in the match?,sports,"New Zealand and India, India and New Zealand",https://www.youtube.com/watch?v=WR0OV_TaLs0 +_imK5jdfR20,,How much is the NBA League Pass?,sports,14.99,https://www.youtube.com/watch?v=_imK5jdfR20 +BgkhQpKbEdM,,Which two teams will participate in the match?,sports,"bears and raiders, raiders and bears",https://www.youtube.com/watch?v=BgkhQpKbEdM +j7LivHE1SJ4,,Which two teams will participate in the match?,sports,"lions and ravens, ravens and lions",https://www.youtube.com/watch?v=j7LivHE1SJ4 +K8qMVxyBQYg,,Which two teams will participate in the match?,sports,"cowboys and chargers, chargers and cowboys",https://www.youtube.com/watch?v=K8qMVxyBQYg +s4mXxflAjps,,Which two teams will participate in the match?,sports,"heat and celtics, celtics and heat",https://www.youtube.com/watch?v=s4mXxflAjps +FT_E2jUd2ZU,,What is the name of the beach?,nature,bossa nova,https://www.youtube.com/watch?v=FT_E2jUd2ZU +rqhBY0fdWw8,,What kind of music will this video present?,music,good vibes,https://www.youtube.com/watch?v=rqhBY0fdWw8 +EGa5h0OStUY,,What kind of music will this video present?,music,classic rock,https://www.youtube.com/watch?v=EGa5h0OStUY +OrctwDZpJHA,,What kind of music will this video present?,music,"christian music, christian",https://www.youtube.com/watch?v=OrctwDZpJHA +ftQ-5tuGOoY,,What kind of music will this video present?,music ,dance remix,https://www.youtube.com/watch?v=ftQ-5tuGOoY +GWp7pABglCs,,What is the name of the song?,music,good old days,https://www.youtube.com/watch?v=GWp7pABglCs +b5oAsI_8Hh4,,Which two countries' KFC will this video present?,food,"us and italy, italy and us",https://www.youtube.com/watch?v=b5oAsI_8Hh4 +BF9PeV8PHVw,,Which two countries' McDonald will this video present?,food,"usa and china, china and usa",https://www.youtube.com/watch?v=BF9PeV8PHVw +CwzaVzIhgmk,,What food will this video talk about?,food,onion pasta,https://www.youtube.com/watch?v=CwzaVzIhgmk +z9r9nT8_ND8,,How much is the BBQ?,food,810,https://www.youtube.com/watch?v=z9r9nT8_ND8 +Ha9xjBYalgk,,What food will this video talk about?,food,jollof rice,https://www.youtube.com/watch?v=Ha9xjBYalgk +J_u8LLLfpbM,,Which two countries' Skittles will this video talk about?,food,"us and uk, uk and us",https://www.youtube.com/watch?v=J_u8LLLfpbM +ajRdOHmYw74,,Which history will this video talk about?,history,ottoman empire,https://www.youtube.com/watch?v=ajRdOHmYw74 +j7VeW3pdozs,,Which history will this video talk about?,history,"the fall of rome, rome",https://www.youtube.com/watch?v=j7VeW3pdozs +Mnws0xna2To,,Which history will this video talk about?,history,british empire,https://www.youtube.com/watch?v=Mnws0xna2To +ibjUpk9Iagk,,Which history will this video talk about?,history,chocolate,https://www.youtube.com/watch?v=ibjUpk9Iagk +0dYk99S98Jc,,Which history will this video talk about?,history,"toilet, toilets",https://www.youtube.com/watch?v=0dYk99S98Jc +z7YhwWrR2ng,,Which food will this video talk about?,food,egg pizza,https://www.youtube.com/watch?v=z7YhwWrR2ng +yMJEc-MDNFk,,Which food will this video talk about?,food,brazilian steak,https://www.youtube.com/watch?v=yMJEc-MDNFk +YFmV_MRSD7M,,What will this video talk about?,nature,ocean,https://www.youtube.com/watch?v=YFmV_MRSD7M +RzVvThhjAKw,,What will this video talk about?,nature,forest,https://www.youtube.com/watch?v=RzVvThhjAKw +bY_gRApfoJk,,Which country will this video talk about?,nature,nepal,https://www.youtube.com/watch?v=bY_gRApfoJk +YB8BX0Pt1Lk,,Which country will this video talk about?,nature,bali,https://www.youtube.com/watch?v=YB8BX0Pt1Lk +2CuZLR_Z-8s,,Which product will this video talk about?,technology,"iphone, iphone 15, iphone 15 pro max",https://www.youtube.com/watch?v=2CuZLR_Z-8s +KJwYBJMSbPI,,What will this video talk about?,nature,earth,https://www.youtube.com/watch?v=KJwYBJMSbPI +ADDFmfOeihU,,What will this video talk about?,nature,snow,https://www.youtube.com/watch?v=ADDFmfOeihU +kJyRVdnRwZA,,What will this video talk about?,nature,wildlife,https://www.youtube.com/watch?v=kJyRVdnRwZA +xBY5veWGBd8,,"According to the caption, which country is surrounded?",politics,china,https://www.youtube.com/watch?v=xBY5veWGBd8 +27x8s4jVqNI,,"According to the caption, which country's real estate crisis is this video about?",news,china,https://www.youtube.com/watch?v=27x8s4jVqNI +kkh_f5SpaFo,,"There is a month in the captio, what month is it?",music,"october, 10, 10th",https://www.youtube.com/watch?v=kkh_f5SpaFo +Lz2b9HJAHrw,,Which adjective is the caption used to describe the person?,entertainment,heavy,https://www.youtube.com/watch?v=Lz2b9HJAHrw +becGMsBRWWs,,"According to the caption, who smashed the car?",news,"bystanders, bystander",https://www.youtube.com/watch?v=becGMsBRWWs +UE2wyHYkw0w,,"According to the caption, what is this man selling?",food,"sandwiches, sandwich",https://www.youtube.com/watch?v=UE2wyHYkw0w +HFM-EHduRrQ,,"According to the caption, what is this video about?",entertainment,"study, study with me",https://www.youtube.com/watch?v=HFM-EHduRrQ +V6e5YeevGpk,,"According to the caption, where is this place in America?",travel,hawaii,https://www.youtube.com/watch?v=V6e5YeevGpk +vO9zHTOztio,,"According to the caption, which country's landscape is it?",travel,"srilanka, sri lanka",https://www.youtube.com/watch?v=vO9zHTOztio +ObIjMOsjV8I,,"According to the caption, which country's landscape is it?",travel,dolomites,https://www.youtube.com/watch?v=ObIjMOsjV8I +AY5qcIq5u2g,,"According to the caption, which country's landscape is it?",travel,japan,https://www.youtube.com/watch?v=AY5qcIq5u2g +HmEbTiv80K8,,"According to the caption, which country is this about?",travel,greece,https://www.youtube.com/watch?v=HmEbTiv80K8 +dVtrJYSdVo0,,"According to the caption, which kind of meat is this from Costco?",food,"beef brisket, beef",https://www.youtube.com/watch?v=dVtrJYSdVo0 +vyJgNw6CYgE,,"According to the caption, where is this place about?",travel,alaska,https://www.youtube.com/watch?v=vyJgNw6CYgE +f2prJNcRxkY,,"According to the caption, how many games of highlights does this video include?",sports,"6, six",https://www.youtube.com/watch?v=f2prJNcRxkY +dBhOdsQwrpg,,"According to the caption, where is this place about?",travel,miami,https://www.youtube.com/watch?v=dBhOdsQwrpg +-WSrY-xH5pI,,"According to the caption, what type of food is this video about?",food,korean,https://www.youtube.com/watch?v=-WSrY-xH5pI +pOp43Ocp2_M,,"According to the caption, where is the destination of this trip?",travel,japan,https://www.youtube.com/watch?v=pOp43Ocp2_M +nP0-oYGiqts,,"According to the caption, what is this man's occupation?",education,"software engineer, engineer",https://www.youtube.com/watch?v=nP0-oYGiqts +k3tOREQ8uYo,,What's the name of this movie?,movies,"the grandmaster, grandmaster",https://www.youtube.com/watch?v=k3tOREQ8uYo +WRWHf7mSeJE,,"According to the caption, where in the Europe is this video about?",travel,ireland,https://www.youtube.com/watch?v=WRWHf7mSeJE +Hx8_OgxINjw,,"According to the caption, where in Spain is this video about?",travel,barcelona,https://www.youtube.com/watch?v=Hx8_OgxINjw +r305fcnMQLo,,"According to the caption, which rainforest is this video about?",travel,amazon,https://www.youtube.com/watch?v=r305fcnMQLo +jC4v5AS4RIM,,What is this video about?,education,prompt,https://www.youtube.com/watch?v=jC4v5AS4RIM +dbo3kNKPaUA,,"According to the text, what is the twitter account of the content creator?",education,hwchung27,https://www.youtube.com/watch?v=dbo3kNKPaUA +eWRfhZUzrAc,,"Based on the text, which programming language is this person going to teach?",education,python,https://www.youtube.com/watch?v=eWRfhZUzrAc +5NgNicANyqM,,Which institution is offering this course based on the text?,education,harvard,https://www.youtube.com/watch?v=5NgNicANyqM +lUUte2o2Sn8,,"According to the caption, what is Gil Strang teaching in this class?",education,linear algebra,https://www.youtube.com/watch?v=lUUte2o2Sn8 +v4CA65JyaVA,,"According to the caption, where is this video about?",travel,norway,https://www.youtube.com/watch?v=v4CA65JyaVA +_nlQtWA7QfQ,,"According to the caption, which country's landscape is it?",travel,vietnam,https://www.youtube.com/watch?v=_nlQtWA7QfQ +T0s-zHvfOC0,,What's the acceptance rate of this school according to the caption?,education,"4, four",https://www.youtube.com/watch?v=T0s-zHvfOC0 +-tNMxwWSN_M,,Which company's coding interview is this video about?,education,google,https://www.youtube.com/watch?v=-tNMxwWSN_M +3lTQqEehEhI,,Which subject is this video going to teach?,education,physics,https://www.youtube.com/watch?v=3lTQqEehEhI +UU1WVnMk4E8,,What is this video about?,education,"llm, large language model",https://www.youtube.com/watch?v=UU1WVnMk4E8 +qz0aGYrrlhU,,What topic will this tutorial talk about?,education,html,https://www.youtube.com/watch?v=qz0aGYrrlhU +oVRooYDvRqg,,What topic will this tutorial talk about?,education,megaminx,https://www.youtube.com/watch?v=oVRooYDvRqg +HfACrKJ_Y2w,,What topic will this tutorial talk about?,education,calculus,https://www.youtube.com/watch?v=HfACrKJ_Y2w +2oKoNi7uRgc,,Which characters will this video talk about?,entertainment,"mario and fortnite, fortnite and mario",https://www.youtube.com/watch?v=2oKoNi7uRgc +kqV1XOZyNjQ,,What kind of food will this video talk about?,food,fried milk,https://www.youtube.com/watch?v=kqV1XOZyNjQ +gWnvo-DVl-M,,What kind of food will this video talk about?,food,yogurt soda,https://www.youtube.com/watch?v=gWnvo-DVl-M +H7kpZ9inc10,,What will this tutorial talk about?,education,smash,https://www.youtube.com/watch?v=H7kpZ9inc10 +_C8kWso4ne4,,What will this tutorial talk about?,education,pyspark,https://www.youtube.com/watch?v=_C8kWso4ne4 +yyUHQIec83I,,What will this tutorial talk about?,education,golang,https://www.youtube.com/watch?v=yyUHQIec83I +Gaf_jCnA6mc,,What will this tutorial talk about?,education,chatgpt,https://www.youtube.com/watch?v=Gaf_jCnA6mc +QGm6v9-1ZBU,,What will this tutorial talk about?,education,moonwalk,https://www.youtube.com/watch?v=QGm6v9-1ZBU +7S_tz1z_5bA,,What will this tutorial talk about?,education,mysql,https://www.youtube.com/watch?v=7S_tz1z_5bA +OCSbzArwB10,,What will this video talk about?,education,chess,https://www.youtube.com/watch?v=OCSbzArwB10 +J6QF-MhwsFw,,Which movie will this video talk about?,entertainment,soldier boy,https://www.youtube.com/watch?v=J6QF-MhwsFw +cSfSGKmmFrM,,Which movie will this video talk about?,entertainment,titanic 2,https://www.youtube.com/watch?v=cSfSGKmmFrM +TAQ-pgbyCtQ,,Which movie will this video talk about?,entertainment,mafia,https://www.youtube.com/watch?v=TAQ-pgbyCtQ +Sw7V_CdRkSs,,Which movie will this video talk about?,entertainment,this shift,https://www.youtube.com/watch?v=Sw7V_CdRkSs +Q5PZxmKc3lU,,Which movie will this video talk about?,entertainment,open marriage,https://www.youtube.com/watch?v=Q5PZxmKc3lU +8lDe2p92hME,,Which movie will this video talk about?,entertainment,dark parasite,https://www.youtube.com/watch?v=8lDe2p92hME +yPCrqSRUKAw,,Which movie will this video talk about?,entertainment,ptsd,https://www.youtube.com/watch?v=yPCrqSRUKAw +74d8gMJu-U0,,Which country will this video talk about?,nature,maldives,https://www.youtube.com/watch?v=74d8gMJu-U0 +r_gV5CHOSBM,,What will this video talk about?,nature,amazon,https://www.youtube.com/watch?v=r_gV5CHOSBM +vJoNqBZ9QlM,,Which country will this video talk about?,nature,switzerland,https://www.youtube.com/watch?v=vJoNqBZ9QlM +2PH1iIsDzZM,,Which movie will this video talk about?,entertainment,reveille,https://www.youtube.com/watch?v=2PH1iIsDzZM +tOcoGNZaUAM,,What will this video talk about?,technology,space battery,https://www.youtube.com/watch?v=tOcoGNZaUAM +g8Qav3vIv9s,,What will this video talk about?,technology,microchip,https://www.youtube.com/watch?v=g8Qav3vIv9s +RhOwyHWGqWg,,What will this video talk about?,nature,cute animals,https://www.youtube.com/watch?v=RhOwyHWGqWg +LCOm8UX5AVk,,Which artist will this video talk about?,music,alan jackson,https://www.youtube.com/watch?v=LCOm8UX5AVk +uu7j_xljCRY,,Which artist will this video talk about?,music,john denver,https://www.youtube.com/watch?v=uu7j_xljCRY +Svo_XHUFGfM,,Which artist will this video talk about?,music,morgan wallen,https://www.youtube.com/watch?v=Svo_XHUFGfM +MXkoN4rql3g,,What topic will this video talk about?,technology,artificial intelligence,https://www.youtube.com/watch?v=MXkoN4rql3g +C3p2wI4RAi8,,What is this video emphasizing the importance about?,education,"sampling, sample",https://www.youtube.com/watch?v=C3p2wI4RAi8 +B4OhuzwLc9o,,"According to the text, what is the target audience of this video?",education,"job seekers, job seeker",https://www.youtube.com/watch?v=B4OhuzwLc9o +EFg3u_E6eHU,,"According to the text, who's algorithmn is this video about?",education,dijkstra,https://www.youtube.com/watch?v=EFg3u_E6eHU +PASetkGDXis,,What did the man say?,sports,wrong way,https://www.youtube.com/watch?v=PASetkGDXis +oG178ObOcrA,,"According to the text, what is this hightlight video about?",sports,handles,https://www.youtube.com/watch?v=oG178ObOcrA +OuOkS2tm89k,,"According to the text, what is this man and Klay Thompson being compared on?",sports,"shooter, shooting",https://www.youtube.com/watch?v=OuOkS2tm89k +CqDbHVRSTU8,,What did the man say about this game?,sports,trash,https://www.youtube.com/watch?v=CqDbHVRSTU8 +XALA5s9Ci8w,,Who is mic'd up according to the text?,sports,"gary payton, payton",https://www.youtube.com/watch?v=XALA5s9Ci8w +QZQK_sIQniE,,Is this video about bmw 5 series?,cars,yes,https://www.youtube.com/watch?v=QZQK_sIQniE +tmGDx9hVWwo,,"Based on the text, is this video about the M2 Pro or the M2 Max chip?",technology,max,https://www.youtube.com/watch?v=tmGDx9hVWwo +3whM5OZ3c_Q,,"Based on the caption, is this video about offense or defense?",sports,defense,https://www.youtube.com/watch?v=3whM5OZ3c_Q +0GZSfBuhf6Y,,"According to the caption, where are those places in the video located?",travel,europe,https://www.youtube.com/watch?v=0GZSfBuhf6Y +hhSTf2xF3wQ,,"According to the caption, is this video about studying?",entertainment,yes,https://www.youtube.com/watch?v=hhSTf2xF3wQ +euTSMgWexEo,,Where is the closed restaurant located?,restaurants,new york,https://www.youtube.com/watch?v=euTSMgWexEo +0ei9HvHKHDA,,What does the man say?,sports,"this is too easy, easy",https://www.youtube.com/watch?v=0ei9HvHKHDA +OOy4iEtWMO4,,"Based on the text, what's the name of this show?",entertainment,shark tank,https://www.youtube.com/watch?v=OOy4iEtWMO4 +e4fwY9ZsxPw,,Is this class about graph theory based on the text?,education,no,https://www.youtube.com/watch?v=e4fwY9ZsxPw +Iibs7buNwxQ,,"Based on the text, what's the country on top?",education,russia,https://www.youtube.com/watch?v=Iibs7buNwxQ +BzB5xtGGsTc,,"Based on the caption, what aspect of airline class is this video going to talk about?",airlines,"economics, economy",https://www.youtube.com/watch?v=BzB5xtGGsTc +fnLMeotB0c0,,"Based on the text, is this video about the renters associations?",news,no,https://www.youtube.com/watch?v=fnLMeotB0c0 +s_6MvEAkC28,,"Based on the text, is the music in the video about studying?",music,yes,https://www.youtube.com/watch?v=s_6MvEAkC28 +RIhDQ0nyG8M,,"According to the caption, which country's landscape is it?",travel,india,https://www.youtube.com/watch?v=RIhDQ0nyG8M +M5QY2_8704o,,"Based on the txt, is the music in the video for coding?",music,yes,https://www.youtube.com/watch?v=M5QY2_8704o +1qw5ITr3k9E,,"According to the caption, is the software engineer interview real?",education,no,https://www.youtube.com/watch?v=1qw5ITr3k9E +4SUJt3dP2Jc,,"Accoridng to the caption, did this person get into Google?",education,no,https://www.youtube.com/watch?v=4SUJt3dP2Jc +PtRf6VS15oM,,"Based on the text, where is the race located?",sports,mexico,https://www.youtube.com/watch?v=PtRf6VS15oM +MRrNi7uHmaY,,Who are the target audience for this video?,sports,"kids, children, kid, child",https://www.youtube.com/watch?v=MRrNi7uHmaY +imA0OQzDrFE,,Are the music in this video relaxing based on the caption?,music,yes,https://www.youtube.com/watch?v=imA0OQzDrFE +9el4YhcrnGA,,"According to the text, who is the man playing the piano?",music,chopin,https://www.youtube.com/watch?v=9el4YhcrnGA +e6QD8lP-m6E,,What is this tutorial about based on the caption?,education,"power bi, powerbi",https://www.youtube.com/watch?v=e6QD8lP-m6E +sbbYntt5CJk,,Is this a java course based on the caption?,education,no,https://www.youtube.com/watch?v=sbbYntt5CJk +Z3NeUgN-sOw,,Which audi car is being reviewed in this video based on the caption?,cars,"s5, audi s5",https://www.youtube.com/watch?v=Z3NeUgN-sOw +FaGvFBLeYqs,,Which bmw car is being reviewed in this video based on the caption?,cars,"m4, bmw m4",https://www.youtube.com/watch?v=FaGvFBLeYqs +kyjlxsLW1Is,,Is statistics being taught in this video based on the caption?,education,yes,https://www.youtube.com/watch?v=kyjlxsLW1Is +D6xkbGLQesk,,What is this video about?,education,big o,https://www.youtube.com/watch?v=D6xkbGLQesk +Vw5IEqDsoPc,,What will this video talk about?,education,school dance,https://www.youtube.com/watch?v=Vw5IEqDsoPc +HoPWQq9kVdg,,Who sing this song?,music,fifty fifty,https://www.youtube.com/watch?v=HoPWQq9kVdg +HoPWQq9kVdg,,What is the name of the song?,music,cupid,https://www.youtube.com/watch?v=HoPWQq9kVdg +NglKK3f2nm0,,Who sing this song?,music,sub urban,https://www.youtube.com/watch?v=NglKK3f2nm0 +NglKK3f2nm0,,What is the name of the song?,music,cradles,https://www.youtube.com/watch?v=NglKK3f2nm0 +RueyVnXKZf0,,Who sing this song?,music,dominic fike,https://www.youtube.com/watch?v=RueyVnXKZf0 +RueyVnXKZf0,,What is the name of the song?,music,mama's boy,https://www.youtube.com/watch?v=RueyVnXKZf0 +uWoYIOcOpwU,,Who sing this song?,music,ellie goulding,https://www.youtube.com/watch?v=uWoYIOcOpwU +uWoYIOcOpwU,,What is the name of the song?,music,like me like you do,https://www.youtube.com/watch?v=uWoYIOcOpwU +5MXTcO1veRQ,,Which country will this video talk about?,cultural,france,https://www.youtube.com/watch?v=5MXTcO1veRQ +orHpSzSl3nI,,What kind of music will this video play?,music,"positive jazz, jazz",https://www.youtube.com/watch?v=orHpSzSl3nI +uvsyIlKhVlQ,,Which year will this video talk about?,technology,2050,https://www.youtube.com/watch?v=uvsyIlKhVlQ +uvsyIlKhVlQ,,What topic will this video talk about?,technology,bio-technology,https://www.youtube.com/watch?v=uvsyIlKhVlQ +N1UMycRJbAw,,Which number is presented in this video?,technology,98635,https://www.youtube.com/watch?v=N1UMycRJbAw +N1UMycRJbAw,,Which job's road map will this video talk about?,technology,data analyst,https://www.youtube.com/watch?v=N1UMycRJbAw +ZSiXZxVpVhs,,Which year is this video talk about?,technology,2023,https://www.youtube.com/watch?v=ZSiXZxVpVhs +ZSiXZxVpVhs,,How many technology trends will this video talk about?,technology,"7, seven",https://www.youtube.com/watch?v=ZSiXZxVpVhs +G3e-cpL7ofc,,Which two topics will this tutorial talk about?,education,"html and css, css and html",https://www.youtube.com/watch?v=G3e-cpL7ofc +nszrG2DVcuI,,Which three countries are compared in this video?,cultural,"china, india, and japan",https://www.youtube.com/watch?v=nszrG2DVcuI +iwRneX7GIGI,,Which company offer this tutorial?,technology,meta,https://www.youtube.com/watch?v=iwRneX7GIGI +iwRneX7GIGI,,What will this tutorial talk about?,education,data engineering,https://www.youtube.com/watch?v=iwRneX7GIGI +8mAITcNt710,,Which course will this video talk about?,education,cs50,https://www.youtube.com/watch?v=8mAITcNt710 +8mAITcNt710,,Which college is this video about?,education,harvard,https://www.youtube.com/watch?v=8mAITcNt710 +8hly31xKli0,,What will this tutorial talk about?,education,algorithms and data structures,https://www.youtube.com/watch?v=8hly31xKli0 +sWbUDq4S6Y8,,What will this tutorial talk about?,education,linux,https://www.youtube.com/watch?v=sWbUDq4S6Y8 +0GyJ3FLHR1o,,What will this tutorial talk about?,education,autogen,https://www.youtube.com/watch?v=0GyJ3FLHR1o +3lTQqEehEhI,,What will this tutorial talk about?,education,"modern physics, physics",https://www.youtube.com/watch?v=3lTQqEehEhI +HXV3zeQKqGY,,What will this tutorial talk about?,education,sql,https://www.youtube.com/watch?v=HXV3zeQKqGY +BGTx91t8q50,,What will this tutorial talk about?,education,java,https://www.youtube.com/watch?v=BGTx91t8q50 +pTFZFxd4hOI,,What will this tutorial talk about?,education,docker,https://www.youtube.com/watch?v=pTFZFxd4hOI +Ez8F0nW6S-w,,What will this tutorial talk about?,education,"git and github, github and git",https://www.youtube.com/watch?v=Ez8F0nW6S-w +_uQrJ0TkZlc,,What will this tutorial talk about?,education,python,https://www.youtube.com/watch?v=_uQrJ0TkZlc +jHv63Uvk5VA,,What will this tutorial talk about?,education,"ChatGPT, chatgpt",https://www.youtube.com/watch?v=jHv63Uvk5VA +SqcY0GlETPk,,How long is this tutorial?,education,"one hour, 1hr",https://www.youtube.com/watch?v=SqcY0GlETPk +SqcY0GlETPk,,What will this tutorial talk about?,education,react,https://www.youtube.com/watch?v=SqcY0GlETPk +CpRP48SIGBM,,Which brand will this video talk about?,entertainment,gucci,https://www.youtube.com/watch?v=CpRP48SIGBM +N9qZFD1NkhI,,What will this video talk about?,science,milky way,https://www.youtube.com/watch?v=N9qZFD1NkhI +N_QnPs8hQCs,,Which country will this video talk about?,nature,poland,https://www.youtube.com/watch?v=N_QnPs8hQCs +HncCXWXucYE,,Which city's restaurants will this video talk about?,food,nairobi,https://www.youtube.com/watch?v=HncCXWXucYE +txqebHbWrDU,,What kind of restaurant will this video talk about?,food,lounge,https://www.youtube.com/watch?v=txqebHbWrDU +51HMytrxVvc,,How much is the BBQ in this video?,food,320,https://www.youtube.com/watch?v=51HMytrxVvc +v8fjmf2uUBI,,What kind of food will this video talk about?,food,fried pizza,https://www.youtube.com/watch?v=v8fjmf2uUBI +cRMgyxhZQyw,,What kind of food will this video talk about?,food,fried chicken,https://www.youtube.com/watch?v=cRMgyxhZQyw +HmEbTiv80K8,,Which country will this video talk about?,nature,greece,https://www.youtube.com/watch?v=HmEbTiv80K8 +13jhFFYCWVU,,Which store will this video talk about?,food,"starbucks cafe, starbucks",https://www.youtube.com/watch?v=13jhFFYCWVU +bBTGN2VILlI,,Which country will this video talk about?,nature,venice,https://www.youtube.com/watch?v=bBTGN2VILlI +Mo3tyjsLPxc,,What kind of music will this video play?,music,piano,https://www.youtube.com/watch?v=Mo3tyjsLPxc +lnrdx_zhwc8,,What kind of music will this video play?,music,love,https://www.youtube.com/watch?v=lnrdx_zhwc8 +3Zjyxf3Ms1M,,Which company's music will this video play?,music,disney,https://www.youtube.com/watch?v=3Zjyxf3Ms1M +c3IVTi6TlfE,,What kind of music will this video play?,music,jazz,https://www.youtube.com/watch?v=c3IVTi6TlfE +NxoNlw1JAYw,,What kind of music will this video play?,music,jazz,https://www.youtube.com/watch?v=NxoNlw1JAYw +XSeTPl_Q-_E,,Who's songs will this video play?,music,morgan wallen,https://www.youtube.com/watch?v=XSeTPl_Q-_E +GtI-ReUbTiY,,What kind of music will this video play?,music,country,https://www.youtube.com/watch?v=GtI-ReUbTiY +ooYDW4XoM-Y,,What kind of music will this video play?,music,rock,https://www.youtube.com/watch?v=ooYDW4XoM-Y +tN2dpw0kGas,,Which country will this video talk about?,nature,austria,https://www.youtube.com/watch?v=tN2dpw0kGas +oxENEXsG3HQ,,Which place will this video talk about?,nature,florida,https://www.youtube.com/watch?v=oxENEXsG3HQ +5MXTcO1veRQ,,Which country will this video talk about?,nature,france,https://www.youtube.com/watch?v=5MXTcO1veRQ +i0YYfOHJOJA,,Which country will this video talk about?,nature,philippines,https://www.youtube.com/watch?v=i0YYfOHJOJA +pym_jxqnhW8,,Which country will this video talk about?,nature,mongolia,https://www.youtube.com/watch?v=pym_jxqnhW8 +0lEmbtqHEiQ,,Which place will this video talk about?,nature,alaska,https://www.youtube.com/watch?v=0lEmbtqHEiQ +gkTB_nmhHhA,,Which country will this video talk about?,nature,brazil,https://www.youtube.com/watch?v=gkTB_nmhHhA +sz6-F1wYFkw,,What will this video talk about?,nature,"the aips, aips",https://www.youtube.com/watch?v=sz6-F1wYFkw +pb-j3svRQLI,,What will this video talk about?,nature,animals,https://www.youtube.com/watch?v=pb-j3svRQLI +es4x5R-rV9s,,What will this video talk about?,nature,"amazon, amazon rainforest",https://www.youtube.com/watch?v=es4x5R-rV9s +JyJiQp0l37Y,,Which country will this video talk about?,nature,england,https://www.youtube.com/watch?v=JyJiQp0l37Y +eNUpTV9BGac,,What will this video talk about?,nature,forest,https://www.youtube.com/watch?v=eNUpTV9BGac +DYqE3M_xdCc,,Which country will this video talk about?,nature,denmark,https://www.youtube.com/watch?v=DYqE3M_xdCc +QJ792KIE82Q,,Which country will this video talk about?,nature,thailand,https://www.youtube.com/watch?v=QJ792KIE82Q +-bpwgzbcvwQ,,Which season will this video talk about?,nature,winter,https://www.youtube.com/watch?v=-bpwgzbcvwQ +56MtbKe8xRA,,Which season will this video talk about?,nature,autumn,https://www.youtube.com/watch?v=56MtbKe8xRA +KJwYBJMSbPI,,What will this video talk about?,nature,earth,https://www.youtube.com/watch?v=KJwYBJMSbPI +4088CV88CdQ,,Which country will this video talk about?,nature,italy,https://www.youtube.com/watch?v=4088CV88CdQ +MwexRt2wVqo,,Which subject is this video going to teach?,education,physics,https://www.youtube.com/watch?v=MwexRt2wVqo +0sCV8j0C_uY,,"This image made a statement about pizza in one country, what is that country?",food,italy,https://www.youtube.com/watch?v=0sCV8j0C_uY +X4Erzrlf3BU,,"Based on the caption in the image, has the game been played yet?",sports,no,https://www.youtube.com/watch?v=X4Erzrlf3BU +aQIlZyasM-U,,"According to the image, will it cost you money to build AI Assistants using the methods presented in this video?",education,no,https://www.youtube.com/watch?v=aQIlZyasM-U +5VisUGOEu4s,,"According to the text, what card is being introduced in this video?",entertainment,"black, black card",https://www.youtube.com/watch?v=5VisUGOEu4s +6-qcm7QmneQ,,"According to the text, which instrument is being played in the music?",music,piano,https://www.youtube.com/watch?v=6-qcm7QmneQ +8dFExnve2do,,Based on the text. what's the city of this night jazz taking place?,music,los angeles,https://www.youtube.com/watch?v=8dFExnve2do +jC4v5AS4RIM,,Is this video about prompt engineering for language models?,education,yes,https://www.youtube.com/watch?v=jC4v5AS4RIM +vmEHCJofslg,,Which python module is this video going to introduce?,education,pandas,https://www.youtube.com/watch?v=vmEHCJofslg +Alwgx_1qsj4,,Which computation technique is going to be introduced in this video?,education,"parallel, parallel computing",https://www.youtube.com/watch?v=Alwgx_1qsj4 +xyZtxfMsD38,,What is LaTex is this video going to go over,education,"table, tables",https://www.youtube.com/watch?v=xyZtxfMsD38 +a1h9xkiOq8g,,Is this video about clearance deals?,entertainment,yes,https://www.youtube.com/watch?v=a1h9xkiOq8g +VGhDnVQlikA,,"Based on the image, do they have a budget on shopping?",entertainment,no,https://www.youtube.com/watch?v=VGhDnVQlikA +KFjj6PPohVI,,"According to the image, what is she shopping for?",entertainment,christmas,https://www.youtube.com/watch?v=KFjj6PPohVI +7eh4d6sabA0,,Is this man going to teach machine learning in java?,education,no,https://www.youtube.com/watch?v=7eh4d6sabA0 +b6bVaH2cBgc,,Is this video going to cover how to insert a table in latex?,education,no,https://www.youtube.com/watch?v=b6bVaH2cBgc +XWuP5Yf5ILI,,"According to the text, is this video about teaching hacker skills?",education,yes,https://www.youtube.com/watch?v=XWuP5Yf5ILI +7DzVIafBMpE,,Who's reaction is this video about?,entertainment,audience,https://www.youtube.com/watch?v=7DzVIafBMpE +Mk4_v0AKR7o,,How many recipes is this video going to cover for beef?,food,"0, zero",https://www.youtube.com/watch?v=Mk4_v0AKR7o +IPPByLBrU58,,"According to the text, who is this software engineer work for?",entertainment,tiktok,https://www.youtube.com/watch?v=IPPByLBrU58 +3_upA09AntU,,How many people is this chef going to cook for?,food,340,https://www.youtube.com/watch?v=3_upA09AntU +g4jf8wuetAI,,Who did the warriors defeat aiagnst?,sports,kings,https://www.youtube.com/watch?v=g4jf8wuetAI +zuyOdaQ2xuw,,What will this video talk about?,entertainment,robot racing,https://www.youtube.com/watch?v=zuyOdaQ2xuw +angnUj0-yhQ,,What product will this video talk about?,technology,rocket bird,https://www.youtube.com/watch?v=angnUj0-yhQ +08XGs7pZSlE,,What will this video talk about?,technology,hydrogen,https://www.youtube.com/watch?v=08XGs7pZSlE +1n_KjpMfVT0,,What product will this video talk about?,technology,smart car,https://www.youtube.com/watch?v=1n_KjpMfVT0 +RpVUTxE9Bdk,,How many robotics projects will be introduced in this video?,technology,"10, ten",https://www.youtube.com/watch?v=RpVUTxE9Bdk +bDN7vV50rSs,,How many new ai projects will be introduced in this video?,technology,"12, twelve",https://www.youtube.com/watch?v=bDN7vV50rSs +pJJQpi-y0dY,,How many weird islands will this video talk about?,nature,"8, eight",https://www.youtube.com/watch?v=pJJQpi-y0dY +7Dp89UN1zyw,,How many secrete spots will this video talk about?,nature,"6, six",https://www.youtube.com/watch?v=7Dp89UN1zyw +s8v4JTLEJuc,,What data will this video talk about?,news,population,https://www.youtube.com/watch?v=s8v4JTLEJuc +C2YHR-8y2UQ,,What data will this video talk about?,news,obesity,https://www.youtube.com/watch?v=C2YHR-8y2UQ +YObpi5FxgFI,,Which place will this video talk about?,nature,patagonia,https://www.youtube.com/watch?v=YObpi5FxgFI +tWVWeAqZ0WU,,What topic will this video talk about?,education,graph algorithm,https://www.youtube.com/watch?v=tWVWeAqZ0WU +QRjf1GedGFU,,What kind of music will this video talk about?,music,jazz,https://www.youtube.com/watch?v=QRjf1GedGFU +w5d-WVWeN4M,,What kind of music will this video talk about?,music,"soft rock, rock",https://www.youtube.com/watch?v=w5d-WVWeN4M +06LTp3ZgLck,,What kind of music will this video talk about?,music,jazz,https://www.youtube.com/watch?v=06LTp3ZgLck +_VDF-q_HsVA,,What kind of music will this video talk about?,music,deep focus,https://www.youtube.com/watch?v=_VDF-q_HsVA +tRZGeaHPoaw,,What will this tutorial talk about?,education,"git, github",https://www.youtube.com/watch?v=tRZGeaHPoaw +ZJHAIrTcm20,,What food will this video talk about?,food,pecan pie,https://www.youtube.com/watch?v=ZJHAIrTcm20 +XBu54nfzxAQ,,What will this tutorial talk about?,education,backend,https://www.youtube.com/watch?v=XBu54nfzxAQ +rHux0gMZ3Eg,,What will this tutorial talk about?,education,django,https://www.youtube.com/watch?v=rHux0gMZ3Eg +pTFZFxd4hOI,,What will this tutorial talk about?,tutorial,docker,https://www.youtube.com/watch?v=pTFZFxd4hOI +pLMiYnP-pAA,,What will this video talk about?,nature,light speed,https://www.youtube.com/watch?v=pLMiYnP-pAA +s5drsQAsTzA,,Which restaurant will this video talk about?,food,sweetgreen,https://www.youtube.com/watch?v=s5drsQAsTzA +VxLmUQsPUfI,,Which news company will this video talk about?,news,"nbc, nbc news",https://www.youtube.com/watch?v=VxLmUQsPUfI +isI6O-22cTg,,What will be the main topic of this video?,news,cash,https://www.youtube.com/watch?v=isI6O-22cTg +06LTp3ZgLck,,What kind of music will this video talk about?,music,jazz,https://www.youtube.com/watch?v=06LTp3ZgLck +EhYIlntrxDs,,What food will this video talk about?,food,turkey,https://www.youtube.com/watch?v=EhYIlntrxDs +1a45bVDQh4I,,Which store will this video talk about?,entertainment,walmart,https://www.youtube.com/watch?v=1a45bVDQh4I +SVgVzEVeP4Q,,What technology will be introduced in this video?,technology,starlink,https://www.youtube.com/watch?v=SVgVzEVeP4Q +NF9rwQxsD1w,,Is the person in this video trying to convince people to learn fast?,news,yes,https://www.youtube.com/watch?v=NF9rwQxsD1w +Dnh0jP-GA0o,,Does she code as a product manager based on the text?,entertainment,no,https://www.youtube.com/watch?v=Dnh0jP-GA0o +UXtrScuC30E,,What is this video about?,food,eggs,https://www.youtube.com/watch?v=UXtrScuC30E +bHssBHfHWmU,,What kind of job is this guy recommending labtops for?,entertainment,"data analyst, data analysts",https://www.youtube.com/watch?v=bHssBHfHWmU +5pGSJlaVZmY,,What sampling method is this video about?,education,gibbs,https://www.youtube.com/watch?v=5pGSJlaVZmY +RSWTegVtUbk,,Which country will this video talk about?,nature,norway,https://www.youtube.com/watch?v=RSWTegVtUbk +mKHBDQ1kTJE,,Which nature scene will be discussed in this video?,nature,waterfall,https://www.youtube.com/watch?v=mKHBDQ1kTJE +ru032Mfsfig,,What will this tutorial talk about?,education,electricity,https://www.youtube.com/watch?v=ru032Mfsfig +mfiRJ1qgToc,,How long is this tutorial?,education,2 hours,https://www.youtube.com/watch?v=mfiRJ1qgToc \ No newline at end of file diff --git a/youtube_new.json b/youtube_new.json new file mode 100644 index 0000000000000000000000000000000000000000..2df4545527bb2ccdbd35f07327e9ec14c34b05a6 --- /dev/null +++ b/youtube_new.json @@ -0,0 +1,4934 @@ +{ + "dataset_type": "test", + "dataset_name": "youtube", + "dataset_version": "0.0.2", + "data": [ + { + "video_id": "dxbVdyVYGcQ", + "caption": "", + "question": "What city is listed on the jersey of the player farthest to the right?", + "video_classes": [ + "sports" + ], + "answers": [ + "memphis" + ], + "video_link": "https://www.youtube.com/watch?v=dxbVdyVYGcQ" + }, + { + "video_id": "dbf-xGWJ4wA", + "caption": "", + "question": "How many points did Stephen Curry score in these video highlights?", + "video_classes": [ + "sports" + ], + "answers": [ + "50", + " 50 points", + " 50 pts", + " 50 pt" + ], + "video_link": "https://www.youtube.com/watch?v=dbf-xGWJ4wA" + }, + { + "video_id": "NLA6-QnMOsU", + "caption": "", + "question": "What did the person on the left say, according to the text box?", + "video_classes": [ + "sports" + ], + "answers": [ + "it's game over" + ], + "video_link": "https://www.youtube.com/watch?v=NLA6-QnMOsU" + }, + { + "video_id": "0Q80gJA2Kao", + "caption": "", + "question": "What was Tom Brady's rank in 2022 based on this image?", + "video_classes": [ + "sports" + ], + "answers": [ + "1", + " number 1", + " #1" + ], + "video_link": "https://www.youtube.com/watch?v=0Q80gJA2Kao" + }, + { + "video_id": "3eVaHYFp8rc", + "caption": "", + "question": "What is the name of this interview on Netflix?", + "video_classes": [ + "sports" + ], + "answers": [ + "quarterbacks on quarterbacks" + ], + "video_link": "https://www.youtube.com/watch?v=3eVaHYFp8rc" + }, + { + "video_id": "6YqygpSEtsI", + "caption": "", + "question": "Based on this image, who is the sponsor of this video?", + "video_classes": [ + "sports" + ], + "answers": [ + "geico" + ], + "video_link": "https://www.youtube.com/watch?v=6YqygpSEtsI" + }, + { + "video_id": "HjBo--1n8lI", + "caption": "", + "question": "Which Super Bowl halftime show is this?", + "video_classes": [ + "sports" + ], + "answers": [ + "57", + " LVII", + " 57th" + ], + "video_link": "https://www.youtube.com/watch?v=HjBo--1n8lI" + }, + { + "video_id": "OLhoAm-zGLM", + "caption": "", + "question": "What caption was used in this image to describe the child's emotion?", + "video_classes": [ + "sports" + ], + "answers": [ + "bye dad" + ], + "video_link": "https://www.youtube.com/watch?v=OLhoAm-zGLM" + }, + { + "video_id": "dDcXhA5hAw4", + "caption": "", + "question": "Who is the sponsor of this training camp video?", + "video_classes": [ + "sports" + ], + "answers": [ + "honda" + ], + "video_link": "https://www.youtube.com/watch?v=dDcXhA5hAw4" + }, + { + "video_id": "phCtvkiI9F0", + "caption": "", + "question": "Do fantasy football players like the eight players who will be mentioned in this video?", + "video_classes": [ + "sports" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=phCtvkiI9F0" + }, + { + "video_id": "9rhadTURsrw", + "caption": "", + "question": "Who is the sponsor of this halftime show?", + "video_classes": [ + "sports" + ], + "answers": [ + "pepsi" + ], + "video_link": "https://www.youtube.com/watch?v=9rhadTURsrw" + }, + { + "video_id": "x369hGXJVDc", + "caption": "", + "question": "Which card is the referee giving out?", + "video_classes": [ + "sports" + ], + "answers": [ + "red", + " red card" + ], + "video_link": "https://www.youtube.com/watch?v=x369hGXJVDc" + }, + { + "video_id": "niig5KcPFDU", + "caption": "", + "question": "Is this a men's or women's soccer game?", + "video_classes": [ + "sports" + ], + "answers": [ + "women", + " woman" + ], + "video_link": "https://www.youtube.com/watch?v=niig5KcPFDU" + }, + { + "video_id": "BLrHTHUjPuw", + "caption": "", + "question": "How long is this video in minutes?", + "video_classes": [ + "education" + ], + "answers": [ + "90", + " ninety" + ], + "video_link": "https://www.youtube.com/watch?v=BLrHTHUjPuw" + }, + { + "video_id": "DCu9xawHJaw", + "caption": "", + "question": "What is the brand name of the basketball on that robot's shoulder?", + "video_classes": [ + "technology" + ], + "answers": [ + "wilson" + ], + "video_link": "https://www.youtube.com/watch?v=DCu9xawHJaw" + }, + { + "video_id": "yeOthSRu2T0", + "caption": "", + "question": "What kind of beef is the man holding?", + "video_classes": [ + "food" + ], + "answers": [ + "wagyu", + " steak", + " wagyu steak" + ], + "video_link": "https://www.youtube.com/watch?v=yeOthSRu2T0" + }, + { + "video_id": "I4gWrboTXwA", + "caption": "", + "question": "Which two countries' wings are being compared in this video?", + "video_classes": [ + "food" + ], + "answers": [ + "korea and japan", + " japan and korea" + ], + "video_link": "https://www.youtube.com/watch?v=I4gWrboTXwA" + }, + { + "video_id": "hxwpkM5w3Cc", + "caption": "", + "question": "For which organization does the man wearing the blue cap work?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "fbi" + ], + "video_link": "https://www.youtube.com/watch?v=hxwpkM5w3Cc" + }, + { + "video_id": "eBKVWnjuQKA", + "caption": "", + "question": "Which airline company is sponsoring the blue and red jersey?", + "video_classes": [ + "sports" + ], + "answers": [ + "qatar airways", + " qatar" + ], + "video_link": "https://www.youtube.com/watch?v=eBKVWnjuQKA" + }, + { + "video_id": "0LhoYwUQ7VM", + "caption": "", + "question": "Who is the guy standing on the far right?", + "video_classes": [ + "sports" + ], + "answers": [ + "neymar jr", + " neymar" + ], + "video_link": "https://www.youtube.com/watch?v=0LhoYwUQ7VM" + }, + { + "video_id": "Zlzi7tsrrh4", + "caption": "", + "question": "What is the price of the steak that the guy is going to try?", + "video_classes": [ + "food" + ], + "answers": [ + "$125", + " 125" + ], + "video_link": "https://www.youtube.com/watch?v=Zlzi7tsrrh4" + }, + { + "video_id": "CwzaVzIhgmk", + "caption": "", + "question": "What food is the guy going to talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "onion pasta", + " pasta" + ], + "video_link": "https://www.youtube.com/watch?v=CwzaVzIhgmk" + }, + { + "video_id": "JCfI9Xlj7Io", + "caption": "", + "question": "In which country is this video being taken?", + "video_classes": [ + "nature" + ], + "answers": [ + "australia" + ], + "video_link": "https://www.youtube.com/watch?v=JCfI9Xlj7Io" + }, + { + "video_id": "jaHd1Fm5zl0", + "caption": "", + "question": "How many types of food are going to be presented in this video?", + "video_classes": [ + "food" + ], + "answers": [ + "50", + " fifty" + ], + "video_link": "https://www.youtube.com/watch?v=jaHd1Fm5zl0" + }, + { + "video_id": "pWUzkxtoJ2I", + "caption": "", + "question": "Which two countries' street food are being compared in this video?", + "video_classes": [ + "food" + ], + "answers": [ + "japan and spain", + " spain and japan", + " japan", + " spain" + ], + "video_link": "https://www.youtube.com/watch?v=pWUzkxtoJ2I" + }, + { + "video_id": "myv7yydtCKc", + "caption": "", + "question": "Will this video talk about junk food?", + "video_classes": [ + "food" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=myv7yydtCKc" + }, + { + "video_id": "aircAruvnKk", + "caption": "", + "question": "Will this video talk about computer security?", + "video_classes": [ + "education" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=aircAruvnKk&t=2s" + }, + { + "video_id": "5q87K1WaoFI", + "caption": "", + "question": "How many levels of difficulty in machine learning will this video discuss?", + "video_classes": [ + "education" + ], + "answers": [ + "5", + " five" + ], + "video_link": "https://www.youtube.com/watch?v=5q87K1WaoFI" + }, + { + "video_id": "nLRL_NcnK-4", + "caption": "", + "question": "To which college does this tutorial belong?", + "video_classes": [ + "education" + ], + "answers": [ + "harvard" + ], + "video_link": "https://www.youtube.com/watch?v=nLRL_NcnK-4" + }, + { + "video_id": "aywZrzNaKjs", + "caption": "", + "question": "How long is this video in minutes?", + "video_classes": [ + "education" + ], + "answers": [ + "13", + " thirteen", + " 13 min", + " thirteen minutes" + ], + "video_link": "https://www.youtube.com/watch?v=aywZrzNaKjs" + }, + { + "video_id": "cXpj8JoF29A", + "caption": "", + "question": "Which two counties are being compared in this video?", + "video_classes": [ + "nature" + ], + "answers": [ + "usa and china", + " china and usa" + ], + "video_link": "https://www.youtube.com/watch?v=cXpj8JoF29A" + }, + { + "video_id": "GJr9ITHsOsM", + "caption": "", + "question": "Which continent will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "europe" + ], + "video_link": "https://www.youtube.com/watch?v=GJr9ITHsOsM" + }, + { + "video_id": "-skZ3lbEBww", + "caption": "", + "question": "Which style of music will this video present?", + "video_classes": [ + "music" + ], + "answers": [ + "blues" + ], + "video_link": "https://www.youtube.com/watch?v=-skZ3lbEBww" + }, + { + "video_id": "yTgSQ2AQGAI", + "caption": "", + "question": "What is the singer of this song?", + "video_classes": [ + "music" + ], + "answers": [ + "lady gaga" + ], + "video_link": "https://www.youtube.com/watch?v=yTgSQ2AQGAI" + }, + { + "video_id": "5vfL2NzVtaQ", + "caption": "", + "question": "Which country's history will this video talk about?", + "video_classes": [ + "history" + ], + "answers": [ + "uk", + " united kingdom" + ], + "video_link": "https://www.youtube.com/watch?v=5vfL2NzVtaQ" + }, + { + "video_id": "CskfvgEItPA", + "caption": "", + "question": "Which country's history will this video talk about?", + "video_classes": [ + "history" + ], + "answers": [ + "egypt", + " ancient egypt" + ], + "video_link": "https://www.youtube.com/watch?v=CskfvgEItPA" + }, + { + "video_id": "70Qi4Nk3aJc", + "caption": "", + "question": "Which planet will this video talk about?", + "video_classes": [ + "astronomy" + ], + "answers": [ + "mars" + ], + "video_link": "https://www.youtube.com/watch?v=70Qi4Nk3aJc" + }, + { + "video_id": "sGy60LO9cN4", + "caption": "", + "question": "Which two countries is this war between?", + "video_classes": [ + "history" + ], + "answers": [ + "britain and rome", + " rome and britain" + ], + "video_link": "https://www.youtube.com/watch?v=sGy60LO9cN4" + }, + { + "video_id": "YeB-1F-UKO0", + "caption": "", + "question": "Will this video talk about the history of chess?", + "video_classes": [ + "history" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=YeB-1F-UKO0" + }, + { + "video_id": "jvsXQ7ytj3o", + "caption": "", + "question": "entertainment", + "video_classes": [ + "entertainment" + ], + "answers": [ + "10", + " ten" + ], + "video_link": "https://www.youtube.com/watch?v=jvsXQ7ytj3o" + }, + { + "video_id": "jvsXQ7ytj3o", + "caption": "", + "question": "Which country's movies will this video discuss?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "germany" + ], + "video_link": "https://www.youtube.com/watch?v=jvsXQ7ytj3o" + }, + { + "video_id": "Fwi34MiTj1Y", + "caption": "", + "question": "Which soccer player will this video talk about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "cristiano ronaldo" + ], + "video_link": "https://www.youtube.com/watch?v=Fwi34MiTj1Y" + }, + { + "video_id": "v4CA65JyaVA", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "norway" + ], + "video_link": "https://www.youtube.com/watch?v=v4CA65JyaVA" + }, + { + "video_id": "ERBbFqALDdM", + "caption": "", + "question": "Which transportation will this video talk about?", + "video_classes": [ + "transportation" + ], + "answers": [ + "subway" + ], + "video_link": "https://www.youtube.com/watch?v=ERBbFqALDdM" + }, + { + "video_id": "ELy9fOX8vtc", + "caption": "", + "question": "Which city's transportation will this video talk about?", + "video_classes": [ + "transportation" + ], + "answers": [ + "hong kong" + ], + "video_link": "https://www.youtube.com/watch?v=ELy9fOX8vtc" + }, + { + "video_id": "tyK6hS4xn3Y", + "caption": "", + "question": "Which two transportations are being compared in this video?", + "video_classes": [ + "transportation" + ], + "answers": [ + "trains and pods", + " pods and trains" + ], + "video_link": "https://www.youtube.com/watch?v=tyK6hS4xn3Y" + }, + { + "video_id": "mvmuCPvRoWQ", + "caption": "", + "question": "Which theory will this video talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "group theory", + " group" + ], + "video_link": "https://www.youtube.com/watch?v=mvmuCPvRoWQ" + }, + { + "video_id": "hrTQipWp6co", + "caption": "", + "question": "Will this video teach me how to use github?", + "video_classes": [ + "education" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=hrTQipWp6co" + }, + { + "video_id": "T53EyLPj4UM", + "caption": "", + "question": "Which company will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "google" + ], + "video_link": "https://www.youtube.com/watch?v=T53EyLPj4UM" + }, + { + "video_id": "8JJ101D3knE", + "caption": "", + "question": "Is this video for beginners learning Git?", + "video_classes": [ + "education" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=8JJ101D3knE" + }, + { + "video_id": "en6YPAgc6WM", + "caption": "", + "question": "If I want to learn Java, is this video the right choice?", + "video_classes": [ + "education" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=en6YPAgc6WM" + }, + { + "video_id": "EcVZVel6nS0", + "caption": "", + "question": "There are two types of chefs in this competition: one is a professional chef. What's the other one?", + "video_classes": [ + "food" + ], + "answers": [ + "homecook", + " home cook" + ], + "video_link": "https://www.youtube.com/watch?v=EcVZVel6nS0" + }, + { + "video_id": "upKrkNlq__0", + "caption": "", + "question": "In which city did this person eat the fried chicken?", + "video_classes": [ + "food" + ], + "answers": [ + "los angeles", + " la" + ], + "video_link": "https://www.youtube.com/watch?v=upKrkNlq__0" + }, + { + "video_id": "7zi0bi-RDj4", + "caption": "", + "question": "What type of steak is this person eating?", + "video_classes": [ + "food" + ], + "answers": [ + "golden", + " golden steak" + ], + "video_link": "https://www.youtube.com/watch?v=7zi0bi-RDj4" + }, + { + "video_id": "F2U0H9vTEgI", + "caption": "", + "question": "At which restaurant did this man have his 'all-you-can-eat' buffet?", + "video_classes": [ + "food" + ], + "answers": [ + "pizza hut" + ], + "video_link": "https://www.youtube.com/watch?v=F2U0H9vTEgI" + }, + { + "video_id": "4h_tDMhzNrA", + "caption": "", + "question": "What is the name of this show?", + "video_classes": [ + "food" + ], + "answers": [ + "kitchen nightmares", + " kitchen nightmare" + ], + "video_link": "https://www.youtube.com/watch?v=4h_tDMhzNrA" + }, + { + "video_id": "NGbFtTYQpus", + "caption": "", + "question": "What is the name of this master chef?", + "video_classes": [ + "food" + ], + "answers": [ + "jon yao" + ], + "video_link": "https://www.youtube.com/watch?v=NGbFtTYQpus" + }, + { + "video_id": "paZNnygxUiY", + "caption": "", + "question": "What is the name on the blue jersey on the right?", + "video_classes": [ + "sports" + ], + "answers": [ + "kevin" + ], + "video_link": "https://www.youtube.com/watch?v=paZNnygxUiY" + }, + { + "video_id": "bBo2L_yyhuo", + "caption": "", + "question": "Who is the sponsor of the team wearing the blue and white jersey?", + "video_classes": [ + "sports" + ], + "answers": [ + "visa" + ], + "video_link": "https://www.youtube.com/watch?v=bBo2L_yyhuo" + }, + { + "video_id": "avnBnnfSVoc", + "caption": "", + "question": "Which store is the woman shopping at?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "ross" + ], + "video_link": "https://www.youtube.com/watch?v=avnBnnfSVoc" + }, + { + "video_id": "_4KNOp7egC8", + "caption": "", + "question": "Which store are the women shopping at?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "target" + ], + "video_link": "https://www.youtube.com/watch?v=_4KNOp7egC8" + }, + { + "video_id": "zR7qajWj3xc", + "caption": "", + "question": "What does this store sell?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "sneaker" + ], + "video_link": "https://www.youtube.com/watch?v=zR7qajWj3xc" + }, + { + "video_id": "w9Co2LAtJIc", + "caption": "", + "question": "Which store is the woman shopping at?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "sephora" + ], + "video_link": "https://www.youtube.com/watch?v=w9Co2LAtJIc" + }, + { + "video_id": "wu8TKc66pgM", + "caption": "", + "question": "Which style of music will this video present?", + "video_classes": [ + "music" + ], + "answers": [ + "jazz" + ], + "video_link": "https://www.youtube.com/watch?v=wu8TKc66pgM" + }, + { + "video_id": "68J6G2vrgcc", + "caption": "", + "question": "Which country's supermarkets are presented in this video?", + "video_classes": [ + "nature" + ], + "answers": [ + "china" + ], + "video_link": "https://www.youtube.com/watch?v=68J6G2vrgcc" + }, + { + "video_id": "BA9Y6_zMHj8", + "caption": "", + "question": "Which country's supermarkets are presented in this video?", + "video_classes": [ + "nature" + ], + "answers": [ + "canada" + ], + "video_link": "https://www.youtube.com/watch?v=BA9Y6_zMHj8" + }, + { + "video_id": "gqOetXxZGpc", + "caption": "", + "question": "Which country's supermarkets are presented in this video?", + "video_classes": [ + "nature" + ], + "answers": [ + "germany" + ], + "video_link": "https://www.youtube.com/watch?v=gqOetXxZGpc" + }, + { + "video_id": "eX8lCtNLFHY", + "caption": "", + "question": "Which country's supermarkets are presented in this video?", + "video_classes": [ + "nature" + ], + "answers": [ + "japan" + ], + "video_link": "https://www.youtube.com/watch?v=eX8lCtNLFHY" + }, + { + "video_id": "xCNuczjpsJ4", + "caption": "", + "question": "Which store is presented in this video?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "walmart" + ], + "video_link": "https://www.youtube.com/watch?v=xCNuczjpsJ4" + }, + { + "video_id": "Ex5_d0NyWO8", + "caption": "", + "question": "Which city is presented in this video?", + "video_classes": [ + "nature" + ], + "answers": [ + "toronto" + ], + "video_link": "https://www.youtube.com/watch?v=Ex5_d0NyWO8" + }, + { + "video_id": "Z7FJQok__HE", + "caption": "", + "question": "Which two planets are presented in this video?", + "video_classes": [ + "astronomy" + ], + "answers": [ + "pluto and mars", + " mars and pluto" + ], + "video_link": "https://www.youtube.com/watch?v=Z7FJQok__HE" + }, + { + "video_id": "ZEyAs3NWH4A", + "caption": "", + "question": "Which planet are presented in this video?", + "video_classes": [ + "astronomy" + ], + "answers": [ + "mars" + ], + "video_link": "https://www.youtube.com/watch?v=ZEyAs3NWH4A" + }, + { + "video_id": "Rf5E2FSFOjU", + "caption": "", + "question": "Which planet are presented in this video?", + "video_classes": [ + "astronomy" + ], + "answers": [ + "jupiter" + ], + "video_link": "https://www.youtube.com/watch?v=Rf5E2FSFOjU" + }, + { + "video_id": "D5XPuS-Y0fg", + "caption": "", + "question": "Which planet are presented in this video?", + "video_classes": [ + "astronomy" + ], + "answers": [ + "pluto" + ], + "video_link": "https://www.youtube.com/watch?v=D5XPuS-Y0fg" + }, + { + "video_id": "R5pYI0vjI6k", + "caption": "", + "question": "Which planet are presented in this video?", + "video_classes": [ + "astronomy" + ], + "answers": [ + "neptune" + ], + "video_link": "https://www.youtube.com/watch?v=R5pYI0vjI6k" + }, + { + "video_id": "bgqGdIoa52s", + "caption": "", + "question": "What game is presented in this video?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "spider-man", + " spider-man 2", + " spider man", + " spider man 2" + ], + "video_link": "https://www.youtube.com/watch?v=bgqGdIoa52s" + }, + { + "video_id": "QRwK5BakVS0", + "caption": "", + "question": "Which instrument is used to play these songs in this video?", + "video_classes": [ + "music" + ], + "answers": [ + "piano" + ], + "video_link": "https://www.youtube.com/watch?v=QRwK5BakVS0" + }, + { + "video_id": "WakQ6W_RtwE", + "caption": "", + "question": "How many songs are going to be played in this video?", + "video_classes": [ + "music" + ], + "answers": [ + "forty", + " 40" + ], + "video_link": "https://www.youtube.com/watch?v=WakQ6W_RtwE" + }, + { + "video_id": "OPID_b1k_cw", + "caption": "", + "question": "Which company will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "nvidia" + ], + "video_link": "https://www.youtube.com/watch?v=OPID_b1k_cw" + }, + { + "video_id": "5AKl_cEB26c", + "caption": "", + "question": "Which company's product will be introduced in this video?", + "video_classes": [ + "technology" + ], + "answers": [ + "meta" + ], + "video_link": "https://www.youtube.com/watch?v=5AKl_cEB26c" + }, + { + "video_id": "K6zV9XnadGg", + "caption": "", + "question": "Which company will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "intel" + ], + "video_link": "https://www.youtube.com/watch?v=K6zV9XnadGg" + }, + { + "video_id": "VbeM8Lf7s5A", + "caption": "", + "question": "Which company will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "apple" + ], + "video_link": "https://www.youtube.com/watch?v=VbeM8Lf7s5A" + }, + { + "video_id": "1ZOw4MLOiio", + "caption": "", + "question": "Which company will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "microsoft" + ], + "video_link": "https://www.youtube.com/watch?v=1ZOw4MLOiio" + }, + { + "video_id": "N2osuAknnXs", + "caption": "", + "question": "What product is Microsoft introducing in this video?", + "video_classes": [ + "technology" + ], + "answers": [ + "codi" + ], + "video_link": "https://www.youtube.com/watch?v=N2osuAknnXs" + }, + { + "video_id": "TX9qSaGXFyg", + "caption": "", + "question": "What product is Apple introducing in this video?", + "video_classes": [ + "technology" + ], + "answers": [ + "vision pro" + ], + "video_link": "https://www.youtube.com/watch?v=TX9qSaGXFyg" + }, + { + "video_id": "8nQZU1WgwcE", + "caption": "", + "question": "Which country is fighting with Britain in the war depicted in this video?", + "video_classes": [ + "history" + ], + "answers": [ + "zulu" + ], + "video_link": "https://www.youtube.com/watch?v=8nQZU1WgwcE" + }, + { + "video_id": "szFjxmY7jQA", + "caption": "", + "question": "Which civilization is introduced in this video?", + "video_classes": [ + "history" + ], + "answers": [ + "sumer", + " sumerians" + ], + "video_link": "https://www.youtube.com/watch?v=szFjxmY7jQA" + }, + { + "video_id": "ISNeEoFlyuM", + "caption": "", + "question": "Which airline is this video talking about?", + "video_classes": [ + "transportation" + ], + "answers": [ + "lufthansa" + ], + "video_link": "https://www.youtube.com/watch?v=ISNeEoFlyuM" + }, + { + "video_id": "JFPHMHNI_nM", + "caption": "", + "question": "To which company does the train in this video belong?", + "video_classes": [ + "transportation" + ], + "answers": [ + "brightline" + ], + "video_link": "https://www.youtube.com/watch?v=JFPHMHNI_nM" + }, + { + "video_id": "oCl9pbiCUt4", + "caption": "", + "question": "What type of train will this video discuss?", + "video_classes": [ + "transportation" + ], + "answers": [ + "doubleheaded steam" + ], + "video_link": "https://www.youtube.com/watch?v=oCl9pbiCUt4" + }, + { + "video_id": "UAx70NI5aaM", + "caption": "", + "question": "Which business company's stock is the news mentioning?", + "video_classes": [ + "technology" + ], + "answers": [ + "intel", + " intc" + ], + "video_link": "https://www.youtube.com/watch?v=UAx70NI5aaM" + }, + { + "video_id": "OiwlPEggq9I", + "caption": "", + "question": "What kind of test is this video about?", + "video_classes": [ + "technology" + ], + "answers": [ + "gaming test", + " gaming" + ], + "video_link": "https://www.youtube.com/watch?v=OiwlPEggq9I" + }, + { + "video_id": "gMsQO5u7-NQ", + "caption": "", + "question": "Who is calling?", + "video_classes": [ + "technology" + ], + "answers": [ + "bathany" + ], + "video_link": "https://www.youtube.com/watch?v=gMsQO5u7-NQ" + }, + { + "video_id": "Py_Z4makIpQ", + "caption": "", + "question": "What is free as mentioned in this back to school offer?", + "video_classes": [ + "technology" + ], + "answers": [ + "airpods" + ], + "video_link": "https://www.youtube.com/watch?v=Py_Z4makIpQ" + }, + { + "video_id": "KQ8HIIot8tQ", + "caption": "", + "question": "What's the name of the brand on this speaker?", + "video_classes": [ + "technology" + ], + "answers": [ + "marshall" + ], + "video_link": "https://www.youtube.com/watch?v=KQ8HIIot8tQ" + }, + { + "video_id": "aMYSdwcybIg", + "caption": "", + "question": "There are two devices being compared on this Python test, what chip is the right hand side computer using?", + "video_classes": [ + "technology" + ], + "answers": [ + "m2 pro", + " m2pro" + ], + "video_link": "https://www.youtube.com/watch?v=aMYSdwcybIg" + }, + { + "video_id": "JzpUfRv45yY", + "caption": "", + "question": "According to the tweet shown, which mouse is the best mouse for Mac?", + "video_classes": [ + "technology" + ], + "answers": [ + "magic mouse", + " magic" + ], + "video_link": "https://www.youtube.com/watch?v=JzpUfRv45yY" + }, + { + "video_id": "NHyEjW192Rc", + "caption": "", + "question": "Does this man seem to be trying to promote Meesho?", + "video_classes": [ + "technology" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=NHyEjW192Rc" + }, + { + "video_id": "Qn05e9Yjg0Y", + "caption": "", + "question": "Which sport's tech products is the video trying to review?", + "video_classes": [ + "technology" + ], + "answers": [ + "football" + ], + "video_link": "https://www.youtube.com/watch?v=Qn05e9Yjg0Y" + }, + { + "video_id": "shoVsQhou-8", + "caption": "", + "question": "Based on the text, who is the musician on the poster?", + "video_classes": [ + "music" + ], + "answers": [ + "mozart" + ], + "video_link": "https://www.youtube.com/watch?v=shoVsQhou-8" + }, + { + "video_id": "LOqczSsYzIk", + "caption": "", + "question": "Based on the text, how many courses does this Omakase have?", + "video_classes": [ + "food" + ], + "answers": [ + "15", + " fifteen" + ], + "video_link": "https://www.youtube.com/watch?v=LOqczSsYzIk" + }, + { + "video_id": "4B-ayCPBCzc", + "caption": "", + "question": "What type of music is this video about?", + "video_classes": [ + "music" + ], + "answers": [ + "jazz", + " rainy jazz" + ], + "video_link": "https://www.youtube.com/watch?v=4B-ayCPBCzc" + }, + { + "video_id": "uM9iLQJzMO0", + "caption": "", + "question": "Which sport's rules are being explained in this video?", + "video_classes": [ + "sports" + ], + "answers": [ + "american football", + " football" + ], + "video_link": "https://www.youtube.com/watch?v=uM9iLQJzMO0" + }, + { + "video_id": "UxgKy1Q4J_0", + "caption": "", + "question": "Does the left-hand-side car's plate contains \"CD\"?", + "video_classes": [ + "cars" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=UxgKy1Q4J_0" + }, + { + "video_id": "eAeon4jt7Cw", + "caption": "", + "question": "Which brand is the car in the middle according to the text?", + "video_classes": [ + "cars" + ], + "answers": [ + "bugatti" + ], + "video_link": "https://www.youtube.com/watch?v=eAeon4jt7Cw" + }, + { + "video_id": "Gk2ocXjjm2g", + "caption": "", + "question": "According to the text, what's the name of the man in the image?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "tony stark" + ], + "video_link": "https://www.youtube.com/watch?v=Gk2ocXjjm2g" + }, + { + "video_id": "Z-GDQAxIA24", + "caption": "", + "question": "What's the unit of measurament used to test the difference between the three cars according to the image?", + "video_classes": [ + "cars" + ], + "answers": [ + "mph", + " mile per hour", + " miles per hour" + ], + "video_link": "https://www.youtube.com/watch?v=Z-GDQAxIA24" + }, + { + "video_id": "m2LuECb5DRM", + "caption": "", + "question": "How much is the car according to the text of this image?", + "video_classes": [ + "cars" + ], + "answers": [ + "100000" + ], + "video_link": "https://www.youtube.com/watch?v=m2LuECb5DRM" + }, + { + "video_id": "ckib1ABJ_sM", + "caption": "", + "question": "There is a number in this picture, what is it?", + "video_classes": [ + "cars" + ], + "answers": [ + "17" + ], + "video_link": "https://www.youtube.com/watch?v=ckib1ABJ_sM" + }, + { + "video_id": "_B4fWDhc3eY", + "caption": "", + "question": "education", + "video_classes": [ + "education" + ], + "answers": [ + "2021" + ], + "video_link": "https://www.youtube.com/watch?v=_B4fWDhc3eY" + }, + { + "video_id": "UjAbpzyrlNc", + "caption": "", + "question": "Based on the text, what are they playing?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "hide n seek", + " hide and seek" + ], + "video_link": "https://www.youtube.com/watch?v=UjAbpzyrlNc" + }, + { + "video_id": "N0v3BhJiNNQ", + "caption": "", + "question": "According to the text, what's the name of the show?", + "video_classes": [ + "food" + ], + "answers": [ + "kitchen nightmares", + " kitchen nightmare" + ], + "video_link": "https://www.youtube.com/watch?v=N0v3BhJiNNQ" + }, + { + "video_id": "rgXtLVFzFmo", + "caption": "", + "question": "What is the chef trying to teach you to cook in this video?", + "video_classes": [ + "food" + ], + "answers": [ + "steak" + ], + "video_link": "https://www.youtube.com/watch?v=rgXtLVFzFmo" + }, + { + "video_id": "VIwwE1QrsWw", + "caption": "", + "question": "What is not allowed in this video?", + "video_classes": [ + "food" + ], + "answers": [ + "hats", + " hat" + ], + "video_link": "https://www.youtube.com/watch?v=VIwwE1QrsWw" + }, + { + "video_id": "VueEQ5KlYyk", + "caption": "", + "question": "What kind of food is being reviewed in this video according to the text?", + "video_classes": [ + "food" + ], + "answers": [ + "nuggets", + " nugget" + ], + "video_link": "https://www.youtube.com/watch?v=VueEQ5KlYyk" + }, + { + "video_id": "_uk_6vfqwTA", + "caption": "", + "question": "What is this video about?", + "video_classes": [ + "history" + ], + "answers": [ + "world war 2", + " wwii", + " ww2" + ], + "video_link": "https://www.youtube.com/watch?v=_uk_6vfqwTA" + }, + { + "video_id": "jB8hIhTw25k", + "caption": "", + "question": "Based on the text, is it a full game highlights?", + "video_classes": [ + "sports" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=jB8hIhTw25k" + }, + { + "video_id": "l401JMjTZW8", + "caption": "", + "question": "Based on the text, which airline company is this video about?", + "video_classes": [ + "airlines" + ], + "answers": [ + "emirates" + ], + "video_link": "https://www.youtube.com/watch?v=l401JMjTZW8" + }, + { + "video_id": "pu55yLeo02E", + "caption": "", + "question": "According to the text, what is the model of this aircraft?", + "video_classes": [ + "airlines" + ], + "answers": [ + "boeing 747", + " 747" + ], + "video_link": "https://www.youtube.com/watch?v=pu55yLeo02E" + }, + { + "video_id": "s8mqtCFFra8", + "caption": "", + "question": "Based on the text, which airline company is this video about?", + "video_classes": [ + "airlines" + ], + "answers": [ + "united", + " united airlines" + ], + "video_link": "https://www.youtube.com/watch?v=s8mqtCFFra8" + }, + { + "video_id": "Eb0FWCX-ERI", + "caption": "", + "question": "According to the text, where is the destination of this flight?", + "video_classes": [ + "airlines" + ], + "answers": [ + "brazil" + ], + "video_link": "https://www.youtube.com/watch?v=Eb0FWCX-ERI" + }, + { + "video_id": "GOnLvU09IXg", + "caption": "", + "question": "Based on the text, which airline company is this video about?", + "video_classes": [ + "airlines" + ], + "answers": [ + "qatar", + " qatar airways" + ], + "video_link": "https://www.youtube.com/watch?v=GOnLvU09IXg" + }, + { + "video_id": "jTBQyItE3_c", + "caption": "", + "question": "Is the current score tied?", + "video_classes": [ + "sports" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=jTBQyItE3_c" + }, + { + "video_id": "tFDA-AqxMQg", + "caption": "", + "question": "How old the the player on the right based on the text?", + "video_classes": [ + "sports" + ], + "answers": [ + "38" + ], + "video_link": "https://www.youtube.com/watch?v=tFDA-AqxMQg" + }, + { + "video_id": "BurnEwc7QPQ", + "caption": "", + "question": "How many points did this player score?", + "video_classes": [ + "sports" + ], + "answers": [ + "41" + ], + "video_link": "https://www.youtube.com/watch?v=BurnEwc7QPQ" + }, + { + "video_id": "gdtetu4nnZc", + "caption": "", + "question": "What type of basketball game is it based on the text?", + "video_classes": [ + "sports" + ], + "answers": [ + "fiba", + " world cup" + ], + "video_link": "https://www.youtube.com/watch?v=gdtetu4nnZc" + }, + { + "video_id": "27vKcpFb8kU", + "caption": "", + "question": "Which year's NBA draft is it?", + "video_classes": [ + "sports" + ], + "answers": [ + "2018" + ], + "video_link": "https://www.youtube.com/watch?v=27vKcpFb8kU" + }, + { + "video_id": "ZSiXZxVpVhs", + "caption": "", + "question": "How many technology trends in 2023 is this video mentioning?", + "video_classes": [ + "technology" + ], + "answers": [ + "7" + ], + "video_link": "https://www.youtube.com/watch?v=ZSiXZxVpVhs" + }, + { + "video_id": "tOcoGNZaUAM", + "caption": "", + "question": "Which type of battery is this video about?", + "video_classes": [ + "technology" + ], + "answers": [ + "space" + ], + "video_link": "https://www.youtube.com/watch?v=tOcoGNZaUAM" + }, + { + "video_id": "NrmMk1Myrxc", + "caption": "", + "question": "What's the name of this new Amazon technology?", + "video_classes": [ + "technology" + ], + "answers": [ + "go", + " amazon go", + " amazongo" + ], + "video_link": "https://www.youtube.com/watch?v=NrmMk1Myrxc" + }, + { + "video_id": "Tdm-7qAYPC0", + "caption": "", + "question": "According to the text, what is free in this video?", + "video_classes": [ + "technology" + ], + "answers": [ + "internet" + ], + "video_link": "https://www.youtube.com/watch?v=Tdm-7qAYPC0" + }, + { + "video_id": "DMzn31vr_J8", + "caption": "", + "question": "Who is this person trying to call based on the text?", + "video_classes": [ + "law" + ], + "answers": [ + "mommy", + " mom" + ], + "video_link": "https://www.youtube.com/watch?v=DMzn31vr_J8" + }, + { + "video_id": "j_UqNC8vqgI", + "caption": "", + "question": "Which month of 2023 is this video about according to the text?", + "video_classes": [ + "law" + ], + "answers": [ + "may" + ], + "video_link": "https://www.youtube.com/watch?v=j_UqNC8vqgI" + }, + { + "video_id": "B1XqKdENH5o", + "caption": "", + "question": "According to the text, which state in the United States is the laws for?", + "video_classes": [ + "law" + ], + "answers": [ + "california" + ], + "video_link": "https://www.youtube.com/watch?v=B1XqKdENH5o" + }, + { + "video_id": "VJGyndssqHg", + "caption": "", + "question": "Which week is the match?", + "video_classes": [ + "sports" + ], + "answers": [ + "9", + " nine" + ], + "video_link": "https://www.youtube.com/watch?v=VJGyndssqHg" + }, + { + "video_id": "WR0OV_TaLs0", + "caption": "", + "question": "Which two countries will participate in the match?", + "video_classes": [ + "sports" + ], + "answers": [ + "New Zealand and India", + " India and New Zealand" + ], + "video_link": "https://www.youtube.com/watch?v=WR0OV_TaLs0" + }, + { + "video_id": "_imK5jdfR20", + "caption": "", + "question": "How much is the NBA League Pass?", + "video_classes": [ + "sports" + ], + "answers": [ + "14.99" + ], + "video_link": "https://www.youtube.com/watch?v=_imK5jdfR20" + }, + { + "video_id": "BgkhQpKbEdM", + "caption": "", + "question": "Which two teams will participate in the match?", + "video_classes": [ + "sports" + ], + "answers": [ + "bears and raiders", + " raiders and bears" + ], + "video_link": "https://www.youtube.com/watch?v=BgkhQpKbEdM" + }, + { + "video_id": "j7LivHE1SJ4", + "caption": "", + "question": "Which two teams will participate in the match?", + "video_classes": [ + "sports" + ], + "answers": [ + "lions and ravens", + " ravens and lions" + ], + "video_link": "https://www.youtube.com/watch?v=j7LivHE1SJ4" + }, + { + "video_id": "K8qMVxyBQYg", + "caption": "", + "question": "Which two teams will participate in the match?", + "video_classes": [ + "sports" + ], + "answers": [ + "cowboys and chargers", + " chargers and cowboys" + ], + "video_link": "https://www.youtube.com/watch?v=K8qMVxyBQYg" + }, + { + "video_id": "s4mXxflAjps", + "caption": "", + "question": "Which two teams will participate in the match?", + "video_classes": [ + "sports" + ], + "answers": [ + "heat and celtics", + " celtics and heat" + ], + "video_link": "https://www.youtube.com/watch?v=s4mXxflAjps" + }, + { + "video_id": "FT_E2jUd2ZU", + "caption": "", + "question": "What is the name of the beach?", + "video_classes": [ + "nature" + ], + "answers": [ + "bossa nova" + ], + "video_link": "https://www.youtube.com/watch?v=FT_E2jUd2ZU" + }, + { + "video_id": "rqhBY0fdWw8", + "caption": "", + "question": "What kind of music will this video present?", + "video_classes": [ + "music" + ], + "answers": [ + "good vibes" + ], + "video_link": "https://www.youtube.com/watch?v=rqhBY0fdWw8" + }, + { + "video_id": "EGa5h0OStUY", + "caption": "", + "question": "What kind of music will this video present?", + "video_classes": [ + "music" + ], + "answers": [ + "classic rock" + ], + "video_link": "https://www.youtube.com/watch?v=EGa5h0OStUY" + }, + { + "video_id": "OrctwDZpJHA", + "caption": "", + "question": "What kind of music will this video present?", + "video_classes": [ + "music" + ], + "answers": [ + "christian music", + " christian" + ], + "video_link": "https://www.youtube.com/watch?v=OrctwDZpJHA" + }, + { + "video_id": "ftQ-5tuGOoY", + "caption": "", + "question": "What kind of music will this video present?", + "video_classes": [ + "music " + ], + "answers": [ + "dance remix" + ], + "video_link": "https://www.youtube.com/watch?v=ftQ-5tuGOoY" + }, + { + "video_id": "GWp7pABglCs", + "caption": "", + "question": "What is the name of the song?", + "video_classes": [ + "music" + ], + "answers": [ + "good old days" + ], + "video_link": "https://www.youtube.com/watch?v=GWp7pABglCs" + }, + { + "video_id": "b5oAsI_8Hh4", + "caption": "", + "question": "Which two countries' KFC will this video present?", + "video_classes": [ + "food" + ], + "answers": [ + "us and italy", + " italy and us" + ], + "video_link": "https://www.youtube.com/watch?v=b5oAsI_8Hh4" + }, + { + "video_id": "BF9PeV8PHVw", + "caption": "", + "question": "Which two countries' McDonald will this video present?", + "video_classes": [ + "food" + ], + "answers": [ + "usa and china", + " china and usa" + ], + "video_link": "https://www.youtube.com/watch?v=BF9PeV8PHVw" + }, + { + "video_id": "CwzaVzIhgmk", + "caption": "", + "question": "What food will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "onion pasta" + ], + "video_link": "https://www.youtube.com/watch?v=CwzaVzIhgmk" + }, + { + "video_id": "z9r9nT8_ND8", + "caption": "", + "question": "How much is the BBQ?", + "video_classes": [ + "food" + ], + "answers": [ + "810" + ], + "video_link": "https://www.youtube.com/watch?v=z9r9nT8_ND8" + }, + { + "video_id": "Ha9xjBYalgk", + "caption": "", + "question": "What food will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "jollof rice" + ], + "video_link": "https://www.youtube.com/watch?v=Ha9xjBYalgk" + }, + { + "video_id": "J_u8LLLfpbM", + "caption": "", + "question": "Which two countries' Skittles will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "us and uk", + " uk and us" + ], + "video_link": "https://www.youtube.com/watch?v=J_u8LLLfpbM" + }, + { + "video_id": "ajRdOHmYw74", + "caption": "", + "question": "Which history will this video talk about?", + "video_classes": [ + "history" + ], + "answers": [ + "ottoman empire" + ], + "video_link": "https://www.youtube.com/watch?v=ajRdOHmYw74" + }, + { + "video_id": "j7VeW3pdozs", + "caption": "", + "question": "Which history will this video talk about?", + "video_classes": [ + "history" + ], + "answers": [ + "the fall of rome", + " rome" + ], + "video_link": "https://www.youtube.com/watch?v=j7VeW3pdozs" + }, + { + "video_id": "Mnws0xna2To", + "caption": "", + "question": "Which history will this video talk about?", + "video_classes": [ + "history" + ], + "answers": [ + "british empire" + ], + "video_link": "https://www.youtube.com/watch?v=Mnws0xna2To" + }, + { + "video_id": "ibjUpk9Iagk", + "caption": "", + "question": "Which history will this video talk about?", + "video_classes": [ + "history" + ], + "answers": [ + "chocolate" + ], + "video_link": "https://www.youtube.com/watch?v=ibjUpk9Iagk" + }, + { + "video_id": "0dYk99S98Jc", + "caption": "", + "question": "Which history will this video talk about?", + "video_classes": [ + "history" + ], + "answers": [ + "toilet", + " toilets" + ], + "video_link": "https://www.youtube.com/watch?v=0dYk99S98Jc" + }, + { + "video_id": "z7YhwWrR2ng", + "caption": "", + "question": "Which food will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "egg pizza" + ], + "video_link": "https://www.youtube.com/watch?v=z7YhwWrR2ng" + }, + { + "video_id": "yMJEc-MDNFk", + "caption": "", + "question": "Which food will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "brazilian steak" + ], + "video_link": "https://www.youtube.com/watch?v=yMJEc-MDNFk" + }, + { + "video_id": "YFmV_MRSD7M", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "ocean" + ], + "video_link": "https://www.youtube.com/watch?v=YFmV_MRSD7M" + }, + { + "video_id": "RzVvThhjAKw", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "forest" + ], + "video_link": "https://www.youtube.com/watch?v=RzVvThhjAKw" + }, + { + "video_id": "bY_gRApfoJk", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "nepal" + ], + "video_link": "https://www.youtube.com/watch?v=bY_gRApfoJk" + }, + { + "video_id": "YB8BX0Pt1Lk", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "bali" + ], + "video_link": "https://www.youtube.com/watch?v=YB8BX0Pt1Lk" + }, + { + "video_id": "2CuZLR_Z-8s", + "caption": "", + "question": "Which product will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "iphone", + " iphone 15", + " iphone 15 pro max" + ], + "video_link": "https://www.youtube.com/watch?v=2CuZLR_Z-8s" + }, + { + "video_id": "KJwYBJMSbPI", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "earth" + ], + "video_link": "https://www.youtube.com/watch?v=KJwYBJMSbPI" + }, + { + "video_id": "ADDFmfOeihU", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "snow" + ], + "video_link": "https://www.youtube.com/watch?v=ADDFmfOeihU" + }, + { + "video_id": "kJyRVdnRwZA", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "wildlife" + ], + "video_link": "https://www.youtube.com/watch?v=kJyRVdnRwZA" + }, + { + "video_id": "xBY5veWGBd8", + "caption": "", + "question": "According to the caption, which country is surrounded?", + "video_classes": [ + "politics" + ], + "answers": [ + "china" + ], + "video_link": "https://www.youtube.com/watch?v=xBY5veWGBd8" + }, + { + "video_id": "27x8s4jVqNI", + "caption": "", + "question": "According to the caption, which country's real estate crisis is this video about?", + "video_classes": [ + "news" + ], + "answers": [ + "china" + ], + "video_link": "https://www.youtube.com/watch?v=27x8s4jVqNI" + }, + { + "video_id": "kkh_f5SpaFo", + "caption": "", + "question": "There is a month in the captio, what month is it?", + "video_classes": [ + "music" + ], + "answers": [ + "october", + " 10", + " 10th" + ], + "video_link": "https://www.youtube.com/watch?v=kkh_f5SpaFo" + }, + { + "video_id": "Lz2b9HJAHrw", + "caption": "", + "question": "Which adjective is the caption used to describe the person?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "heavy" + ], + "video_link": "https://www.youtube.com/watch?v=Lz2b9HJAHrw" + }, + { + "video_id": "becGMsBRWWs", + "caption": "", + "question": "According to the caption, who smashed the car?", + "video_classes": [ + "news" + ], + "answers": [ + "bystanders", + " bystander" + ], + "video_link": "https://www.youtube.com/watch?v=becGMsBRWWs" + }, + { + "video_id": "UE2wyHYkw0w", + "caption": "", + "question": "According to the caption, what is this man selling?", + "video_classes": [ + "food" + ], + "answers": [ + "sandwiches", + " sandwich" + ], + "video_link": "https://www.youtube.com/watch?v=UE2wyHYkw0w" + }, + { + "video_id": "HFM-EHduRrQ", + "caption": "", + "question": "According to the caption, what is this video about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "study", + " study with me" + ], + "video_link": "https://www.youtube.com/watch?v=HFM-EHduRrQ" + }, + { + "video_id": "V6e5YeevGpk", + "caption": "", + "question": "According to the caption, where is this place in America?", + "video_classes": [ + "travel" + ], + "answers": [ + "hawaii" + ], + "video_link": "https://www.youtube.com/watch?v=V6e5YeevGpk" + }, + { + "video_id": "vO9zHTOztio", + "caption": "", + "question": "According to the caption, which country's landscape is it?", + "video_classes": [ + "travel" + ], + "answers": [ + "srilanka", + " sri lanka" + ], + "video_link": "https://www.youtube.com/watch?v=vO9zHTOztio" + }, + { + "video_id": "ObIjMOsjV8I", + "caption": "", + "question": "According to the caption, which country's landscape is it?", + "video_classes": [ + "travel" + ], + "answers": [ + "dolomites" + ], + "video_link": "https://www.youtube.com/watch?v=ObIjMOsjV8I" + }, + { + "video_id": "AY5qcIq5u2g", + "caption": "", + "question": "According to the caption, which country's landscape is it?", + "video_classes": [ + "travel" + ], + "answers": [ + "japan" + ], + "video_link": "https://www.youtube.com/watch?v=AY5qcIq5u2g" + }, + { + "video_id": "HmEbTiv80K8", + "caption": "", + "question": "According to the caption, which country is this about?", + "video_classes": [ + "travel" + ], + "answers": [ + "greece" + ], + "video_link": "https://www.youtube.com/watch?v=HmEbTiv80K8" + }, + { + "video_id": "dVtrJYSdVo0", + "caption": "", + "question": "According to the caption, which kind of meat is this from Costco?", + "video_classes": [ + "food" + ], + "answers": [ + "beef brisket", + " beef" + ], + "video_link": "https://www.youtube.com/watch?v=dVtrJYSdVo0" + }, + { + "video_id": "vyJgNw6CYgE", + "caption": "", + "question": "According to the caption, where is this place about?", + "video_classes": [ + "travel" + ], + "answers": [ + "alaska" + ], + "video_link": "https://www.youtube.com/watch?v=vyJgNw6CYgE" + }, + { + "video_id": "f2prJNcRxkY", + "caption": "", + "question": "According to the caption, how many games of highlights does this video include?", + "video_classes": [ + "sports" + ], + "answers": [ + "6", + " six" + ], + "video_link": "https://www.youtube.com/watch?v=f2prJNcRxkY" + }, + { + "video_id": "dBhOdsQwrpg", + "caption": "", + "question": "According to the caption, where is this place about?", + "video_classes": [ + "travel" + ], + "answers": [ + "miami" + ], + "video_link": "https://www.youtube.com/watch?v=dBhOdsQwrpg" + }, + { + "video_id": "-WSrY-xH5pI", + "caption": "", + "question": "According to the caption, what type of food is this video about?", + "video_classes": [ + "food" + ], + "answers": [ + "korean" + ], + "video_link": "https://www.youtube.com/watch?v=-WSrY-xH5pI" + }, + { + "video_id": "pOp43Ocp2_M", + "caption": "", + "question": "According to the caption, where is the destination of this trip?", + "video_classes": [ + "travel" + ], + "answers": [ + "japan" + ], + "video_link": "https://www.youtube.com/watch?v=pOp43Ocp2_M" + }, + { + "video_id": "nP0-oYGiqts", + "caption": "", + "question": "According to the caption, what is this man's occupation?", + "video_classes": [ + "education" + ], + "answers": [ + "software engineer", + " engineer" + ], + "video_link": "https://www.youtube.com/watch?v=nP0-oYGiqts" + }, + { + "video_id": "k3tOREQ8uYo", + "caption": "", + "question": "What's the name of this movie?", + "video_classes": [ + "movies" + ], + "answers": [ + "the grandmaster", + " grandmaster" + ], + "video_link": "https://www.youtube.com/watch?v=k3tOREQ8uYo" + }, + { + "video_id": "WRWHf7mSeJE", + "caption": "", + "question": "According to the caption, where in the Europe is this video about?", + "video_classes": [ + "travel" + ], + "answers": [ + "ireland" + ], + "video_link": "https://www.youtube.com/watch?v=WRWHf7mSeJE" + }, + { + "video_id": "Hx8_OgxINjw", + "caption": "", + "question": "According to the caption, where in Spain is this video about?", + "video_classes": [ + "travel" + ], + "answers": [ + "barcelona" + ], + "video_link": "https://www.youtube.com/watch?v=Hx8_OgxINjw" + }, + { + "video_id": "r305fcnMQLo", + "caption": "", + "question": "According to the caption, which rainforest is this video about?", + "video_classes": [ + "travel" + ], + "answers": [ + "amazon" + ], + "video_link": "https://www.youtube.com/watch?v=r305fcnMQLo" + }, + { + "video_id": "jC4v5AS4RIM", + "caption": "", + "question": "What is this video about?", + "video_classes": [ + "education" + ], + "answers": [ + "prompt" + ], + "video_link": "https://www.youtube.com/watch?v=jC4v5AS4RIM" + }, + { + "video_id": "dbo3kNKPaUA", + "caption": "", + "question": "According to the text, what is the twitter account of the content creator?", + "video_classes": [ + "education" + ], + "answers": [ + "hwchung27" + ], + "video_link": "https://www.youtube.com/watch?v=dbo3kNKPaUA" + }, + { + "video_id": "eWRfhZUzrAc", + "caption": "", + "question": "Based on the text, which programming language is this person going to teach?", + "video_classes": [ + "education" + ], + "answers": [ + "python" + ], + "video_link": "https://www.youtube.com/watch?v=eWRfhZUzrAc" + }, + { + "video_id": "5NgNicANyqM", + "caption": "", + "question": "Which institution is offering this course based on the text?", + "video_classes": [ + "education" + ], + "answers": [ + "harvard" + ], + "video_link": "https://www.youtube.com/watch?v=5NgNicANyqM" + }, + { + "video_id": "lUUte2o2Sn8", + "caption": "", + "question": "According to the caption, what is Gil Strang teaching in this class?", + "video_classes": [ + "education" + ], + "answers": [ + "linear algebra" + ], + "video_link": "https://www.youtube.com/watch?v=lUUte2o2Sn8" + }, + { + "video_id": "v4CA65JyaVA", + "caption": "", + "question": "According to the caption, where is this video about?", + "video_classes": [ + "travel" + ], + "answers": [ + "norway" + ], + "video_link": "https://www.youtube.com/watch?v=v4CA65JyaVA" + }, + { + "video_id": "_nlQtWA7QfQ", + "caption": "", + "question": "According to the caption, which country's landscape is it?", + "video_classes": [ + "travel" + ], + "answers": [ + "vietnam" + ], + "video_link": "https://www.youtube.com/watch?v=_nlQtWA7QfQ" + }, + { + "video_id": "T0s-zHvfOC0", + "caption": "", + "question": "What's the acceptance rate of this school according to the caption?", + "video_classes": [ + "education" + ], + "answers": [ + "4", + " four" + ], + "video_link": "https://www.youtube.com/watch?v=T0s-zHvfOC0" + }, + { + "video_id": "-tNMxwWSN_M", + "caption": "", + "question": "Which company's coding interview is this video about?", + "video_classes": [ + "education" + ], + "answers": [ + "google" + ], + "video_link": "https://www.youtube.com/watch?v=-tNMxwWSN_M" + }, + { + "video_id": "3lTQqEehEhI", + "caption": "", + "question": "Which subject is this video going to teach?", + "video_classes": [ + "education" + ], + "answers": [ + "physics" + ], + "video_link": "https://www.youtube.com/watch?v=3lTQqEehEhI" + }, + { + "video_id": "UU1WVnMk4E8", + "caption": "", + "question": "What is this video about?", + "video_classes": [ + "education" + ], + "answers": [ + "llm", + " large language model" + ], + "video_link": "https://www.youtube.com/watch?v=UU1WVnMk4E8" + }, + { + "video_id": "qz0aGYrrlhU", + "caption": "", + "question": "What topic will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "html" + ], + "video_link": "https://www.youtube.com/watch?v=qz0aGYrrlhU" + }, + { + "video_id": "oVRooYDvRqg", + "caption": "", + "question": "What topic will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "megaminx" + ], + "video_link": "https://www.youtube.com/watch?v=oVRooYDvRqg" + }, + { + "video_id": "HfACrKJ_Y2w", + "caption": "", + "question": "What topic will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "calculus" + ], + "video_link": "https://www.youtube.com/watch?v=HfACrKJ_Y2w" + }, + { + "video_id": "2oKoNi7uRgc", + "caption": "", + "question": "Which characters will this video talk about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "mario and fortnite", + " fortnite and mario" + ], + "video_link": "https://www.youtube.com/watch?v=2oKoNi7uRgc" + }, + { + "video_id": "kqV1XOZyNjQ", + "caption": "", + "question": "What kind of food will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "fried milk" + ], + "video_link": "https://www.youtube.com/watch?v=kqV1XOZyNjQ" + }, + { + "video_id": "gWnvo-DVl-M", + "caption": "", + "question": "What kind of food will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "yogurt soda" + ], + "video_link": "https://www.youtube.com/watch?v=gWnvo-DVl-M" + }, + { + "video_id": "H7kpZ9inc10", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "smash" + ], + "video_link": "https://www.youtube.com/watch?v=H7kpZ9inc10" + }, + { + "video_id": "_C8kWso4ne4", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "pyspark" + ], + "video_link": "https://www.youtube.com/watch?v=_C8kWso4ne4" + }, + { + "video_id": "yyUHQIec83I", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "golang" + ], + "video_link": "https://www.youtube.com/watch?v=yyUHQIec83I" + }, + { + "video_id": "Gaf_jCnA6mc", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "chatgpt" + ], + "video_link": "https://www.youtube.com/watch?v=Gaf_jCnA6mc" + }, + { + "video_id": "QGm6v9-1ZBU", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "moonwalk" + ], + "video_link": "https://www.youtube.com/watch?v=QGm6v9-1ZBU" + }, + { + "video_id": "7S_tz1z_5bA", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "mysql" + ], + "video_link": "https://www.youtube.com/watch?v=7S_tz1z_5bA" + }, + { + "video_id": "OCSbzArwB10", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "chess" + ], + "video_link": "https://www.youtube.com/watch?v=OCSbzArwB10" + }, + { + "video_id": "J6QF-MhwsFw", + "caption": "", + "question": "Which movie will this video talk about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "soldier boy" + ], + "video_link": "https://www.youtube.com/watch?v=J6QF-MhwsFw" + }, + { + "video_id": "cSfSGKmmFrM", + "caption": "", + "question": "Which movie will this video talk about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "titanic 2" + ], + "video_link": "https://www.youtube.com/watch?v=cSfSGKmmFrM" + }, + { + "video_id": "TAQ-pgbyCtQ", + "caption": "", + "question": "Which movie will this video talk about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "mafia" + ], + "video_link": "https://www.youtube.com/watch?v=TAQ-pgbyCtQ" + }, + { + "video_id": "Sw7V_CdRkSs", + "caption": "", + "question": "Which movie will this video talk about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "this shift" + ], + "video_link": "https://www.youtube.com/watch?v=Sw7V_CdRkSs" + }, + { + "video_id": "Q5PZxmKc3lU", + "caption": "", + "question": "Which movie will this video talk about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "open marriage" + ], + "video_link": "https://www.youtube.com/watch?v=Q5PZxmKc3lU" + }, + { + "video_id": "8lDe2p92hME", + "caption": "", + "question": "Which movie will this video talk about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "dark parasite" + ], + "video_link": "https://www.youtube.com/watch?v=8lDe2p92hME" + }, + { + "video_id": "yPCrqSRUKAw", + "caption": "", + "question": "Which movie will this video talk about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "ptsd" + ], + "video_link": "https://www.youtube.com/watch?v=yPCrqSRUKAw" + }, + { + "video_id": "74d8gMJu-U0", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "maldives" + ], + "video_link": "https://www.youtube.com/watch?v=74d8gMJu-U0" + }, + { + "video_id": "r_gV5CHOSBM", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "amazon" + ], + "video_link": "https://www.youtube.com/watch?v=r_gV5CHOSBM" + }, + { + "video_id": "vJoNqBZ9QlM", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "switzerland" + ], + "video_link": "https://www.youtube.com/watch?v=vJoNqBZ9QlM" + }, + { + "video_id": "2PH1iIsDzZM", + "caption": "", + "question": "Which movie will this video talk about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "reveille" + ], + "video_link": "https://www.youtube.com/watch?v=2PH1iIsDzZM" + }, + { + "video_id": "tOcoGNZaUAM", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "space battery" + ], + "video_link": "https://www.youtube.com/watch?v=tOcoGNZaUAM" + }, + { + "video_id": "g8Qav3vIv9s", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "microchip" + ], + "video_link": "https://www.youtube.com/watch?v=g8Qav3vIv9s" + }, + { + "video_id": "RhOwyHWGqWg", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "cute animals" + ], + "video_link": "https://www.youtube.com/watch?v=RhOwyHWGqWg" + }, + { + "video_id": "LCOm8UX5AVk", + "caption": "", + "question": "Which artist will this video talk about?", + "video_classes": [ + "music" + ], + "answers": [ + "alan jackson" + ], + "video_link": "https://www.youtube.com/watch?v=LCOm8UX5AVk" + }, + { + "video_id": "uu7j_xljCRY", + "caption": "", + "question": "Which artist will this video talk about?", + "video_classes": [ + "music" + ], + "answers": [ + "john denver" + ], + "video_link": "https://www.youtube.com/watch?v=uu7j_xljCRY" + }, + { + "video_id": "Svo_XHUFGfM", + "caption": "", + "question": "Which artist will this video talk about?", + "video_classes": [ + "music" + ], + "answers": [ + "morgan wallen" + ], + "video_link": "https://www.youtube.com/watch?v=Svo_XHUFGfM" + }, + { + "video_id": "MXkoN4rql3g", + "caption": "", + "question": "What topic will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "artificial intelligence" + ], + "video_link": "https://www.youtube.com/watch?v=MXkoN4rql3g" + }, + { + "video_id": "C3p2wI4RAi8", + "caption": "", + "question": "What is this video emphasizing the importance about?", + "video_classes": [ + "education" + ], + "answers": [ + "sampling", + " sample" + ], + "video_link": "https://www.youtube.com/watch?v=C3p2wI4RAi8" + }, + { + "video_id": "B4OhuzwLc9o", + "caption": "", + "question": "According to the text, what is the target audience of this video?", + "video_classes": [ + "education" + ], + "answers": [ + "job seekers", + " job seeker" + ], + "video_link": "https://www.youtube.com/watch?v=B4OhuzwLc9o" + }, + { + "video_id": "EFg3u_E6eHU", + "caption": "", + "question": "According to the text, who's algorithmn is this video about?", + "video_classes": [ + "education" + ], + "answers": [ + "dijkstra" + ], + "video_link": "https://www.youtube.com/watch?v=EFg3u_E6eHU" + }, + { + "video_id": "PASetkGDXis", + "caption": "", + "question": "What did the man say?", + "video_classes": [ + "sports" + ], + "answers": [ + "wrong way" + ], + "video_link": "https://www.youtube.com/watch?v=PASetkGDXis" + }, + { + "video_id": "oG178ObOcrA", + "caption": "", + "question": "According to the text, what is this hightlight video about?", + "video_classes": [ + "sports" + ], + "answers": [ + "handles" + ], + "video_link": "https://www.youtube.com/watch?v=oG178ObOcrA" + }, + { + "video_id": "OuOkS2tm89k", + "caption": "", + "question": "According to the text, what is this man and Klay Thompson being compared on?", + "video_classes": [ + "sports" + ], + "answers": [ + "shooter", + " shooting" + ], + "video_link": "https://www.youtube.com/watch?v=OuOkS2tm89k" + }, + { + "video_id": "CqDbHVRSTU8", + "caption": "", + "question": "What did the man say about this game?", + "video_classes": [ + "sports" + ], + "answers": [ + "trash" + ], + "video_link": "https://www.youtube.com/watch?v=CqDbHVRSTU8" + }, + { + "video_id": "XALA5s9Ci8w", + "caption": "", + "question": "Who is mic'd up according to the text?", + "video_classes": [ + "sports" + ], + "answers": [ + "gary payton", + " payton" + ], + "video_link": "https://www.youtube.com/watch?v=XALA5s9Ci8w" + }, + { + "video_id": "QZQK_sIQniE", + "caption": "", + "question": "Is this video about bmw 5 series?", + "video_classes": [ + "cars" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=QZQK_sIQniE" + }, + { + "video_id": "tmGDx9hVWwo", + "caption": "", + "question": "Based on the text, is this video about the M2 Pro or the M2 Max chip?", + "video_classes": [ + "technology" + ], + "answers": [ + "max" + ], + "video_link": "https://www.youtube.com/watch?v=tmGDx9hVWwo" + }, + { + "video_id": "3whM5OZ3c_Q", + "caption": "", + "question": "Based on the caption, is this video about offense or defense?", + "video_classes": [ + "sports" + ], + "answers": [ + "defense" + ], + "video_link": "https://www.youtube.com/watch?v=3whM5OZ3c_Q" + }, + { + "video_id": "0GZSfBuhf6Y", + "caption": "", + "question": "According to the caption, where are those places in the video located?", + "video_classes": [ + "travel" + ], + "answers": [ + "europe" + ], + "video_link": "https://www.youtube.com/watch?v=0GZSfBuhf6Y" + }, + { + "video_id": "hhSTf2xF3wQ", + "caption": "", + "question": "According to the caption, is this video about studying?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=hhSTf2xF3wQ" + }, + { + "video_id": "euTSMgWexEo", + "caption": "", + "question": "Where is the closed restaurant located?", + "video_classes": [ + "restaurants" + ], + "answers": [ + "new york" + ], + "video_link": "https://www.youtube.com/watch?v=euTSMgWexEo" + }, + { + "video_id": "0ei9HvHKHDA", + "caption": "", + "question": "What does the man say?", + "video_classes": [ + "sports" + ], + "answers": [ + "this is too easy", + " easy" + ], + "video_link": "https://www.youtube.com/watch?v=0ei9HvHKHDA" + }, + { + "video_id": "OOy4iEtWMO4", + "caption": "", + "question": "Based on the text, what's the name of this show?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "shark tank" + ], + "video_link": "https://www.youtube.com/watch?v=OOy4iEtWMO4" + }, + { + "video_id": "e4fwY9ZsxPw", + "caption": "", + "question": "Is this class about graph theory based on the text?", + "video_classes": [ + "education" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=e4fwY9ZsxPw" + }, + { + "video_id": "Iibs7buNwxQ", + "caption": "", + "question": "Based on the text, what's the country on top?", + "video_classes": [ + "education" + ], + "answers": [ + "russia" + ], + "video_link": "https://www.youtube.com/watch?v=Iibs7buNwxQ" + }, + { + "video_id": "BzB5xtGGsTc", + "caption": "", + "question": "Based on the caption, what aspect of airline class is this video going to talk about?", + "video_classes": [ + "airlines" + ], + "answers": [ + "economics", + " economy" + ], + "video_link": "https://www.youtube.com/watch?v=BzB5xtGGsTc" + }, + { + "video_id": "fnLMeotB0c0", + "caption": "", + "question": "Based on the text, is this video about the renters associations?", + "video_classes": [ + "news" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=fnLMeotB0c0" + }, + { + "video_id": "s_6MvEAkC28", + "caption": "", + "question": "Based on the text, is the music in the video about studying?", + "video_classes": [ + "music" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=s_6MvEAkC28" + }, + { + "video_id": "RIhDQ0nyG8M", + "caption": "", + "question": "According to the caption, which country's landscape is it?", + "video_classes": [ + "travel" + ], + "answers": [ + "india" + ], + "video_link": "https://www.youtube.com/watch?v=RIhDQ0nyG8M" + }, + { + "video_id": "M5QY2_8704o", + "caption": "", + "question": "Based on the txt, is the music in the video for coding?", + "video_classes": [ + "music" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=M5QY2_8704o" + }, + { + "video_id": "1qw5ITr3k9E", + "caption": "", + "question": "According to the caption, is the software engineer interview real?", + "video_classes": [ + "education" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=1qw5ITr3k9E" + }, + { + "video_id": "4SUJt3dP2Jc", + "caption": "", + "question": "Accoridng to the caption, did this person get into Google?", + "video_classes": [ + "education" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=4SUJt3dP2Jc" + }, + { + "video_id": "PtRf6VS15oM", + "caption": "", + "question": "Based on the text, where is the race located?", + "video_classes": [ + "sports" + ], + "answers": [ + "mexico" + ], + "video_link": "https://www.youtube.com/watch?v=PtRf6VS15oM" + }, + { + "video_id": "MRrNi7uHmaY", + "caption": "", + "question": "Who are the target audience for this video?", + "video_classes": [ + "sports" + ], + "answers": [ + "kids", + " children", + " kid", + " child" + ], + "video_link": "https://www.youtube.com/watch?v=MRrNi7uHmaY" + }, + { + "video_id": "imA0OQzDrFE", + "caption": "", + "question": "Are the music in this video relaxing based on the caption?", + "video_classes": [ + "music" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=imA0OQzDrFE" + }, + { + "video_id": "9el4YhcrnGA", + "caption": "", + "question": "According to the text, who is the man playing the piano?", + "video_classes": [ + "music" + ], + "answers": [ + "chopin" + ], + "video_link": "https://www.youtube.com/watch?v=9el4YhcrnGA" + }, + { + "video_id": "e6QD8lP-m6E", + "caption": "", + "question": "What is this tutorial about based on the caption?", + "video_classes": [ + "education" + ], + "answers": [ + "power bi", + " powerbi" + ], + "video_link": "https://www.youtube.com/watch?v=e6QD8lP-m6E" + }, + { + "video_id": "sbbYntt5CJk", + "caption": "", + "question": "Is this a java course based on the caption?", + "video_classes": [ + "education" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=sbbYntt5CJk" + }, + { + "video_id": "Z3NeUgN-sOw", + "caption": "", + "question": "Which audi car is being reviewed in this video based on the caption?", + "video_classes": [ + "cars" + ], + "answers": [ + "s5", + " audi s5" + ], + "video_link": "https://www.youtube.com/watch?v=Z3NeUgN-sOw" + }, + { + "video_id": "FaGvFBLeYqs", + "caption": "", + "question": "Which bmw car is being reviewed in this video based on the caption?", + "video_classes": [ + "cars" + ], + "answers": [ + "m4", + " bmw m4" + ], + "video_link": "https://www.youtube.com/watch?v=FaGvFBLeYqs" + }, + { + "video_id": "kyjlxsLW1Is", + "caption": "", + "question": "Is statistics being taught in this video based on the caption?", + "video_classes": [ + "education" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=kyjlxsLW1Is" + }, + { + "video_id": "D6xkbGLQesk", + "caption": "", + "question": "What is this video about?", + "video_classes": [ + "education" + ], + "answers": [ + "big o" + ], + "video_link": "https://www.youtube.com/watch?v=D6xkbGLQesk" + }, + { + "video_id": "Vw5IEqDsoPc", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "school dance" + ], + "video_link": "https://www.youtube.com/watch?v=Vw5IEqDsoPc" + }, + { + "video_id": "HoPWQq9kVdg", + "caption": "", + "question": "Who sing this song?", + "video_classes": [ + "music" + ], + "answers": [ + "fifty fifty" + ], + "video_link": "https://www.youtube.com/watch?v=HoPWQq9kVdg" + }, + { + "video_id": "HoPWQq9kVdg", + "caption": "", + "question": "What is the name of the song?", + "video_classes": [ + "music" + ], + "answers": [ + "cupid" + ], + "video_link": "https://www.youtube.com/watch?v=HoPWQq9kVdg" + }, + { + "video_id": "NglKK3f2nm0", + "caption": "", + "question": "Who sing this song?", + "video_classes": [ + "music" + ], + "answers": [ + "sub urban" + ], + "video_link": "https://www.youtube.com/watch?v=NglKK3f2nm0" + }, + { + "video_id": "NglKK3f2nm0", + "caption": "", + "question": "What is the name of the song?", + "video_classes": [ + "music" + ], + "answers": [ + "cradles" + ], + "video_link": "https://www.youtube.com/watch?v=NglKK3f2nm0" + }, + { + "video_id": "RueyVnXKZf0", + "caption": "", + "question": "Who sing this song?", + "video_classes": [ + "music" + ], + "answers": [ + "dominic fike" + ], + "video_link": "https://www.youtube.com/watch?v=RueyVnXKZf0" + }, + { + "video_id": "RueyVnXKZf0", + "caption": "", + "question": "What is the name of the song?", + "video_classes": [ + "music" + ], + "answers": [ + "mama's boy" + ], + "video_link": "https://www.youtube.com/watch?v=RueyVnXKZf0" + }, + { + "video_id": "uWoYIOcOpwU", + "caption": "", + "question": "Who sing this song?", + "video_classes": [ + "music" + ], + "answers": [ + "ellie goulding" + ], + "video_link": "https://www.youtube.com/watch?v=uWoYIOcOpwU" + }, + { + "video_id": "uWoYIOcOpwU", + "caption": "", + "question": "What is the name of the song?", + "video_classes": [ + "music" + ], + "answers": [ + "like me like you do" + ], + "video_link": "https://www.youtube.com/watch?v=uWoYIOcOpwU" + }, + { + "video_id": "5MXTcO1veRQ", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "cultural" + ], + "answers": [ + "france" + ], + "video_link": "https://www.youtube.com/watch?v=5MXTcO1veRQ" + }, + { + "video_id": "orHpSzSl3nI", + "caption": "", + "question": "What kind of music will this video play?", + "video_classes": [ + "music" + ], + "answers": [ + "positive jazz", + " jazz" + ], + "video_link": "https://www.youtube.com/watch?v=orHpSzSl3nI" + }, + { + "video_id": "uvsyIlKhVlQ", + "caption": "", + "question": "Which year will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "2050" + ], + "video_link": "https://www.youtube.com/watch?v=uvsyIlKhVlQ" + }, + { + "video_id": "uvsyIlKhVlQ", + "caption": "", + "question": "What topic will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "bio-technology" + ], + "video_link": "https://www.youtube.com/watch?v=uvsyIlKhVlQ" + }, + { + "video_id": "N1UMycRJbAw", + "caption": "", + "question": "Which number is presented in this video?", + "video_classes": [ + "technology" + ], + "answers": [ + "98635" + ], + "video_link": "https://www.youtube.com/watch?v=N1UMycRJbAw" + }, + { + "video_id": "N1UMycRJbAw", + "caption": "", + "question": "Which job's road map will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "data analyst" + ], + "video_link": "https://www.youtube.com/watch?v=N1UMycRJbAw" + }, + { + "video_id": "ZSiXZxVpVhs", + "caption": "", + "question": "Which year is this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "2023" + ], + "video_link": "https://www.youtube.com/watch?v=ZSiXZxVpVhs" + }, + { + "video_id": "ZSiXZxVpVhs", + "caption": "", + "question": "How many technology trends will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "7", + " seven" + ], + "video_link": "https://www.youtube.com/watch?v=ZSiXZxVpVhs" + }, + { + "video_id": "G3e-cpL7ofc", + "caption": "", + "question": "Which two topics will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "html and css", + " css and html" + ], + "video_link": "https://www.youtube.com/watch?v=G3e-cpL7ofc" + }, + { + "video_id": "nszrG2DVcuI", + "caption": "", + "question": "Which three countries are compared in this video?", + "video_classes": [ + "cultural" + ], + "answers": [ + "china", + " india", + " and japan" + ], + "video_link": "https://www.youtube.com/watch?v=nszrG2DVcuI" + }, + { + "video_id": "iwRneX7GIGI", + "caption": "", + "question": "Which company offer this tutorial?", + "video_classes": [ + "technology" + ], + "answers": [ + "meta" + ], + "video_link": "https://www.youtube.com/watch?v=iwRneX7GIGI" + }, + { + "video_id": "iwRneX7GIGI", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "data engineering" + ], + "video_link": "https://www.youtube.com/watch?v=iwRneX7GIGI" + }, + { + "video_id": "8mAITcNt710", + "caption": "", + "question": "Which course will this video talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "cs50" + ], + "video_link": "https://www.youtube.com/watch?v=8mAITcNt710" + }, + { + "video_id": "8mAITcNt710", + "caption": "", + "question": "Which college is this video about?", + "video_classes": [ + "education" + ], + "answers": [ + "harvard" + ], + "video_link": "https://www.youtube.com/watch?v=8mAITcNt710" + }, + { + "video_id": "8hly31xKli0", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "algorithms and data structures" + ], + "video_link": "https://www.youtube.com/watch?v=8hly31xKli0" + }, + { + "video_id": "sWbUDq4S6Y8", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "linux" + ], + "video_link": "https://www.youtube.com/watch?v=sWbUDq4S6Y8" + }, + { + "video_id": "0GyJ3FLHR1o", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "autogen" + ], + "video_link": "https://www.youtube.com/watch?v=0GyJ3FLHR1o" + }, + { + "video_id": "3lTQqEehEhI", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "modern physics", + " physics" + ], + "video_link": "https://www.youtube.com/watch?v=3lTQqEehEhI" + }, + { + "video_id": "HXV3zeQKqGY", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "sql" + ], + "video_link": "https://www.youtube.com/watch?v=HXV3zeQKqGY" + }, + { + "video_id": "BGTx91t8q50", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "java" + ], + "video_link": "https://www.youtube.com/watch?v=BGTx91t8q50" + }, + { + "video_id": "pTFZFxd4hOI", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "docker" + ], + "video_link": "https://www.youtube.com/watch?v=pTFZFxd4hOI" + }, + { + "video_id": "Ez8F0nW6S-w", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "git and github", + " github and git" + ], + "video_link": "https://www.youtube.com/watch?v=Ez8F0nW6S-w" + }, + { + "video_id": "_uQrJ0TkZlc", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "python" + ], + "video_link": "https://www.youtube.com/watch?v=_uQrJ0TkZlc" + }, + { + "video_id": "jHv63Uvk5VA", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "ChatGPT", + " chatgpt" + ], + "video_link": "https://www.youtube.com/watch?v=jHv63Uvk5VA" + }, + { + "video_id": "SqcY0GlETPk", + "caption": "", + "question": "How long is this tutorial?", + "video_classes": [ + "education" + ], + "answers": [ + "one hour", + " 1hr" + ], + "video_link": "https://www.youtube.com/watch?v=SqcY0GlETPk" + }, + { + "video_id": "SqcY0GlETPk", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "react" + ], + "video_link": "https://www.youtube.com/watch?v=SqcY0GlETPk" + }, + { + "video_id": "CpRP48SIGBM", + "caption": "", + "question": "Which brand will this video talk about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "gucci" + ], + "video_link": "https://www.youtube.com/watch?v=CpRP48SIGBM" + }, + { + "video_id": "N9qZFD1NkhI", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "science" + ], + "answers": [ + "milky way" + ], + "video_link": "https://www.youtube.com/watch?v=N9qZFD1NkhI" + }, + { + "video_id": "N_QnPs8hQCs", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "poland" + ], + "video_link": "https://www.youtube.com/watch?v=N_QnPs8hQCs" + }, + { + "video_id": "HncCXWXucYE", + "caption": "", + "question": "Which city's restaurants will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "nairobi" + ], + "video_link": "https://www.youtube.com/watch?v=HncCXWXucYE" + }, + { + "video_id": "txqebHbWrDU", + "caption": "", + "question": "What kind of restaurant will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "lounge" + ], + "video_link": "https://www.youtube.com/watch?v=txqebHbWrDU" + }, + { + "video_id": "51HMytrxVvc", + "caption": "", + "question": "How much is the BBQ in this video?", + "video_classes": [ + "food" + ], + "answers": [ + "320" + ], + "video_link": "https://www.youtube.com/watch?v=51HMytrxVvc" + }, + { + "video_id": "v8fjmf2uUBI", + "caption": "", + "question": "What kind of food will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "fried pizza" + ], + "video_link": "https://www.youtube.com/watch?v=v8fjmf2uUBI" + }, + { + "video_id": "cRMgyxhZQyw", + "caption": "", + "question": "What kind of food will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "fried chicken" + ], + "video_link": "https://www.youtube.com/watch?v=cRMgyxhZQyw" + }, + { + "video_id": "HmEbTiv80K8", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "greece" + ], + "video_link": "https://www.youtube.com/watch?v=HmEbTiv80K8" + }, + { + "video_id": "13jhFFYCWVU", + "caption": "", + "question": "Which store will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "starbucks cafe", + " starbucks" + ], + "video_link": "https://www.youtube.com/watch?v=13jhFFYCWVU" + }, + { + "video_id": "bBTGN2VILlI", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "venice" + ], + "video_link": "https://www.youtube.com/watch?v=bBTGN2VILlI" + }, + { + "video_id": "Mo3tyjsLPxc", + "caption": "", + "question": "What kind of music will this video play?", + "video_classes": [ + "music" + ], + "answers": [ + "piano" + ], + "video_link": "https://www.youtube.com/watch?v=Mo3tyjsLPxc" + }, + { + "video_id": "lnrdx_zhwc8", + "caption": "", + "question": "What kind of music will this video play?", + "video_classes": [ + "music" + ], + "answers": [ + "love" + ], + "video_link": "https://www.youtube.com/watch?v=lnrdx_zhwc8" + }, + { + "video_id": "3Zjyxf3Ms1M", + "caption": "", + "question": "Which company's music will this video play?", + "video_classes": [ + "music" + ], + "answers": [ + "disney" + ], + "video_link": "https://www.youtube.com/watch?v=3Zjyxf3Ms1M" + }, + { + "video_id": "c3IVTi6TlfE", + "caption": "", + "question": "What kind of music will this video play?", + "video_classes": [ + "music" + ], + "answers": [ + "jazz" + ], + "video_link": "https://www.youtube.com/watch?v=c3IVTi6TlfE" + }, + { + "video_id": "NxoNlw1JAYw", + "caption": "", + "question": "What kind of music will this video play?", + "video_classes": [ + "music" + ], + "answers": [ + "jazz" + ], + "video_link": "https://www.youtube.com/watch?v=NxoNlw1JAYw" + }, + { + "video_id": "XSeTPl_Q-_E", + "caption": "", + "question": "Who's songs will this video play?", + "video_classes": [ + "music" + ], + "answers": [ + "morgan wallen" + ], + "video_link": "https://www.youtube.com/watch?v=XSeTPl_Q-_E" + }, + { + "video_id": "GtI-ReUbTiY", + "caption": "", + "question": "What kind of music will this video play?", + "video_classes": [ + "music" + ], + "answers": [ + "country" + ], + "video_link": "https://www.youtube.com/watch?v=GtI-ReUbTiY" + }, + { + "video_id": "ooYDW4XoM-Y", + "caption": "", + "question": "What kind of music will this video play?", + "video_classes": [ + "music" + ], + "answers": [ + "rock" + ], + "video_link": "https://www.youtube.com/watch?v=ooYDW4XoM-Y" + }, + { + "video_id": "tN2dpw0kGas", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "austria" + ], + "video_link": "https://www.youtube.com/watch?v=tN2dpw0kGas" + }, + { + "video_id": "oxENEXsG3HQ", + "caption": "", + "question": "Which place will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "florida" + ], + "video_link": "https://www.youtube.com/watch?v=oxENEXsG3HQ" + }, + { + "video_id": "5MXTcO1veRQ", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "france" + ], + "video_link": "https://www.youtube.com/watch?v=5MXTcO1veRQ" + }, + { + "video_id": "i0YYfOHJOJA", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "philippines" + ], + "video_link": "https://www.youtube.com/watch?v=i0YYfOHJOJA" + }, + { + "video_id": "pym_jxqnhW8", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "mongolia" + ], + "video_link": "https://www.youtube.com/watch?v=pym_jxqnhW8" + }, + { + "video_id": "0lEmbtqHEiQ", + "caption": "", + "question": "Which place will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "alaska" + ], + "video_link": "https://www.youtube.com/watch?v=0lEmbtqHEiQ" + }, + { + "video_id": "gkTB_nmhHhA", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "brazil" + ], + "video_link": "https://www.youtube.com/watch?v=gkTB_nmhHhA" + }, + { + "video_id": "sz6-F1wYFkw", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "the aips", + " aips" + ], + "video_link": "https://www.youtube.com/watch?v=sz6-F1wYFkw" + }, + { + "video_id": "pb-j3svRQLI", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "animals" + ], + "video_link": "https://www.youtube.com/watch?v=pb-j3svRQLI" + }, + { + "video_id": "es4x5R-rV9s", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "amazon", + " amazon rainforest" + ], + "video_link": "https://www.youtube.com/watch?v=es4x5R-rV9s" + }, + { + "video_id": "JyJiQp0l37Y", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "england" + ], + "video_link": "https://www.youtube.com/watch?v=JyJiQp0l37Y" + }, + { + "video_id": "eNUpTV9BGac", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "forest" + ], + "video_link": "https://www.youtube.com/watch?v=eNUpTV9BGac" + }, + { + "video_id": "DYqE3M_xdCc", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "denmark" + ], + "video_link": "https://www.youtube.com/watch?v=DYqE3M_xdCc" + }, + { + "video_id": "QJ792KIE82Q", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "thailand" + ], + "video_link": "https://www.youtube.com/watch?v=QJ792KIE82Q" + }, + { + "video_id": "-bpwgzbcvwQ", + "caption": "", + "question": "Which season will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "winter" + ], + "video_link": "https://www.youtube.com/watch?v=-bpwgzbcvwQ" + }, + { + "video_id": "56MtbKe8xRA", + "caption": "", + "question": "Which season will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "autumn" + ], + "video_link": "https://www.youtube.com/watch?v=56MtbKe8xRA" + }, + { + "video_id": "KJwYBJMSbPI", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "earth" + ], + "video_link": "https://www.youtube.com/watch?v=KJwYBJMSbPI" + }, + { + "video_id": "4088CV88CdQ", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "italy" + ], + "video_link": "https://www.youtube.com/watch?v=4088CV88CdQ" + }, + { + "video_id": "MwexRt2wVqo", + "caption": "", + "question": "Which subject is this video going to teach?", + "video_classes": [ + "education" + ], + "answers": [ + "physics" + ], + "video_link": "https://www.youtube.com/watch?v=MwexRt2wVqo" + }, + { + "video_id": "0sCV8j0C_uY", + "caption": "", + "question": "This image made a statement about pizza in one country, what is that country?", + "video_classes": [ + "food" + ], + "answers": [ + "italy" + ], + "video_link": "https://www.youtube.com/watch?v=0sCV8j0C_uY" + }, + { + "video_id": "X4Erzrlf3BU", + "caption": "", + "question": "Based on the caption in the image, has the game been played yet?", + "video_classes": [ + "sports" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=X4Erzrlf3BU" + }, + { + "video_id": "aQIlZyasM-U", + "caption": "", + "question": "According to the image, will it cost you money to build AI Assistants using the methods presented in this video?", + "video_classes": [ + "education" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=aQIlZyasM-U" + }, + { + "video_id": "5VisUGOEu4s", + "caption": "", + "question": "According to the text, what card is being introduced in this video?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "black", + " black card" + ], + "video_link": "https://www.youtube.com/watch?v=5VisUGOEu4s" + }, + { + "video_id": "6-qcm7QmneQ", + "caption": "", + "question": "According to the text, which instrument is being played in the music?", + "video_classes": [ + "music" + ], + "answers": [ + "piano" + ], + "video_link": "https://www.youtube.com/watch?v=6-qcm7QmneQ" + }, + { + "video_id": "8dFExnve2do", + "caption": "", + "question": "Based on the text. what's the city of this night jazz taking place?", + "video_classes": [ + "music" + ], + "answers": [ + "los angeles" + ], + "video_link": "https://www.youtube.com/watch?v=8dFExnve2do" + }, + { + "video_id": "jC4v5AS4RIM", + "caption": "", + "question": "Is this video about prompt engineering for language models?", + "video_classes": [ + "education" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=jC4v5AS4RIM" + }, + { + "video_id": "vmEHCJofslg", + "caption": "", + "question": "Which python module is this video going to introduce?", + "video_classes": [ + "education" + ], + "answers": [ + "pandas" + ], + "video_link": "https://www.youtube.com/watch?v=vmEHCJofslg" + }, + { + "video_id": "Alwgx_1qsj4", + "caption": "", + "question": "Which computation technique is going to be introduced in this video?", + "video_classes": [ + "education" + ], + "answers": [ + "parallel", + " parallel computing" + ], + "video_link": "https://www.youtube.com/watch?v=Alwgx_1qsj4" + }, + { + "video_id": "xyZtxfMsD38", + "caption": "", + "question": "What is LaTex is this video going to go over", + "video_classes": [ + "education" + ], + "answers": [ + "table", + " tables" + ], + "video_link": "https://www.youtube.com/watch?v=xyZtxfMsD38" + }, + { + "video_id": "a1h9xkiOq8g", + "caption": "", + "question": "Is this video about clearance deals?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=a1h9xkiOq8g" + }, + { + "video_id": "VGhDnVQlikA", + "caption": "", + "question": "Based on the image, do they have a budget on shopping?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=VGhDnVQlikA" + }, + { + "video_id": "KFjj6PPohVI", + "caption": "", + "question": "According to the image, what is she shopping for?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "christmas" + ], + "video_link": "https://www.youtube.com/watch?v=KFjj6PPohVI" + }, + { + "video_id": "7eh4d6sabA0", + "caption": "", + "question": "Is this man going to teach machine learning in java?", + "video_classes": [ + "education" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=7eh4d6sabA0" + }, + { + "video_id": "b6bVaH2cBgc", + "caption": "", + "question": "Is this video going to cover how to insert a table in latex?", + "video_classes": [ + "education" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=b6bVaH2cBgc" + }, + { + "video_id": "XWuP5Yf5ILI", + "caption": "", + "question": "According to the text, is this video about teaching hacker skills?", + "video_classes": [ + "education" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=XWuP5Yf5ILI" + }, + { + "video_id": "7DzVIafBMpE", + "caption": "", + "question": "Who's reaction is this video about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "audience" + ], + "video_link": "https://www.youtube.com/watch?v=7DzVIafBMpE" + }, + { + "video_id": "Mk4_v0AKR7o", + "caption": "", + "question": "How many recipes is this video going to cover for beef?", + "video_classes": [ + "food" + ], + "answers": [ + "0", + " zero" + ], + "video_link": "https://www.youtube.com/watch?v=Mk4_v0AKR7o" + }, + { + "video_id": "IPPByLBrU58", + "caption": "", + "question": "According to the text, who is this software engineer work for?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "tiktok" + ], + "video_link": "https://www.youtube.com/watch?v=IPPByLBrU58" + }, + { + "video_id": "3_upA09AntU", + "caption": "", + "question": "How many people is this chef going to cook for?", + "video_classes": [ + "food" + ], + "answers": [ + "340" + ], + "video_link": "https://www.youtube.com/watch?v=3_upA09AntU" + }, + { + "video_id": "g4jf8wuetAI", + "caption": "", + "question": "Who did the warriors defeat aiagnst?", + "video_classes": [ + "sports" + ], + "answers": [ + "kings" + ], + "video_link": "https://www.youtube.com/watch?v=g4jf8wuetAI" + }, + { + "video_id": "zuyOdaQ2xuw", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "robot racing" + ], + "video_link": "https://www.youtube.com/watch?v=zuyOdaQ2xuw" + }, + { + "video_id": "angnUj0-yhQ", + "caption": "", + "question": "What product will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "rocket bird" + ], + "video_link": "https://www.youtube.com/watch?v=angnUj0-yhQ" + }, + { + "video_id": "08XGs7pZSlE", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "hydrogen" + ], + "video_link": "https://www.youtube.com/watch?v=08XGs7pZSlE" + }, + { + "video_id": "1n_KjpMfVT0", + "caption": "", + "question": "What product will this video talk about?", + "video_classes": [ + "technology" + ], + "answers": [ + "smart car" + ], + "video_link": "https://www.youtube.com/watch?v=1n_KjpMfVT0" + }, + { + "video_id": "RpVUTxE9Bdk", + "caption": "", + "question": "How many robotics projects will be introduced in this video?", + "video_classes": [ + "technology" + ], + "answers": [ + "10", + " ten" + ], + "video_link": "https://www.youtube.com/watch?v=RpVUTxE9Bdk" + }, + { + "video_id": "bDN7vV50rSs", + "caption": "", + "question": "How many new ai projects will be introduced in this video?", + "video_classes": [ + "technology" + ], + "answers": [ + "12", + " twelve" + ], + "video_link": "https://www.youtube.com/watch?v=bDN7vV50rSs" + }, + { + "video_id": "pJJQpi-y0dY", + "caption": "", + "question": "How many weird islands will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "8", + " eight" + ], + "video_link": "https://www.youtube.com/watch?v=pJJQpi-y0dY" + }, + { + "video_id": "7Dp89UN1zyw", + "caption": "", + "question": "How many secrete spots will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "6", + " six" + ], + "video_link": "https://www.youtube.com/watch?v=7Dp89UN1zyw" + }, + { + "video_id": "s8v4JTLEJuc", + "caption": "", + "question": "What data will this video talk about?", + "video_classes": [ + "news" + ], + "answers": [ + "population" + ], + "video_link": "https://www.youtube.com/watch?v=s8v4JTLEJuc" + }, + { + "video_id": "C2YHR-8y2UQ", + "caption": "", + "question": "What data will this video talk about?", + "video_classes": [ + "news" + ], + "answers": [ + "obesity" + ], + "video_link": "https://www.youtube.com/watch?v=C2YHR-8y2UQ" + }, + { + "video_id": "YObpi5FxgFI", + "caption": "", + "question": "Which place will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "patagonia" + ], + "video_link": "https://www.youtube.com/watch?v=YObpi5FxgFI" + }, + { + "video_id": "tWVWeAqZ0WU", + "caption": "", + "question": "What topic will this video talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "graph algorithm" + ], + "video_link": "https://www.youtube.com/watch?v=tWVWeAqZ0WU" + }, + { + "video_id": "QRjf1GedGFU", + "caption": "", + "question": "What kind of music will this video talk about?", + "video_classes": [ + "music" + ], + "answers": [ + "jazz" + ], + "video_link": "https://www.youtube.com/watch?v=QRjf1GedGFU" + }, + { + "video_id": "w5d-WVWeN4M", + "caption": "", + "question": "What kind of music will this video talk about?", + "video_classes": [ + "music" + ], + "answers": [ + "soft rock", + " rock" + ], + "video_link": "https://www.youtube.com/watch?v=w5d-WVWeN4M" + }, + { + "video_id": "06LTp3ZgLck", + "caption": "", + "question": "What kind of music will this video talk about?", + "video_classes": [ + "music" + ], + "answers": [ + "jazz" + ], + "video_link": "https://www.youtube.com/watch?v=06LTp3ZgLck" + }, + { + "video_id": "_VDF-q_HsVA", + "caption": "", + "question": "What kind of music will this video talk about?", + "video_classes": [ + "music" + ], + "answers": [ + "deep focus" + ], + "video_link": "https://www.youtube.com/watch?v=_VDF-q_HsVA" + }, + { + "video_id": "tRZGeaHPoaw", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "git", + " github" + ], + "video_link": "https://www.youtube.com/watch?v=tRZGeaHPoaw" + }, + { + "video_id": "ZJHAIrTcm20", + "caption": "", + "question": "What food will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "pecan pie" + ], + "video_link": "https://www.youtube.com/watch?v=ZJHAIrTcm20" + }, + { + "video_id": "XBu54nfzxAQ", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "backend" + ], + "video_link": "https://www.youtube.com/watch?v=XBu54nfzxAQ" + }, + { + "video_id": "rHux0gMZ3Eg", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "django" + ], + "video_link": "https://www.youtube.com/watch?v=rHux0gMZ3Eg" + }, + { + "video_id": "pTFZFxd4hOI", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "tutorial" + ], + "answers": [ + "docker" + ], + "video_link": "https://www.youtube.com/watch?v=pTFZFxd4hOI" + }, + { + "video_id": "pLMiYnP-pAA", + "caption": "", + "question": "What will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "light speed" + ], + "video_link": "https://www.youtube.com/watch?v=pLMiYnP-pAA" + }, + { + "video_id": "s5drsQAsTzA", + "caption": "", + "question": "Which restaurant will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "sweetgreen" + ], + "video_link": "https://www.youtube.com/watch?v=s5drsQAsTzA" + }, + { + "video_id": "VxLmUQsPUfI", + "caption": "", + "question": "Which news company will this video talk about?", + "video_classes": [ + "news" + ], + "answers": [ + "nbc", + " nbc news" + ], + "video_link": "https://www.youtube.com/watch?v=VxLmUQsPUfI" + }, + { + "video_id": "isI6O-22cTg", + "caption": "", + "question": "What will be the main topic of this video?", + "video_classes": [ + "news" + ], + "answers": [ + "cash" + ], + "video_link": "https://www.youtube.com/watch?v=isI6O-22cTg" + }, + { + "video_id": "06LTp3ZgLck", + "caption": "", + "question": "What kind of music will this video talk about?", + "video_classes": [ + "music" + ], + "answers": [ + "jazz" + ], + "video_link": "https://www.youtube.com/watch?v=06LTp3ZgLck" + }, + { + "video_id": "EhYIlntrxDs", + "caption": "", + "question": "What food will this video talk about?", + "video_classes": [ + "food" + ], + "answers": [ + "turkey" + ], + "video_link": "https://www.youtube.com/watch?v=EhYIlntrxDs" + }, + { + "video_id": "1a45bVDQh4I", + "caption": "", + "question": "Which store will this video talk about?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "walmart" + ], + "video_link": "https://www.youtube.com/watch?v=1a45bVDQh4I" + }, + { + "video_id": "SVgVzEVeP4Q", + "caption": "", + "question": "What technology will be introduced in this video?", + "video_classes": [ + "technology" + ], + "answers": [ + "starlink" + ], + "video_link": "https://www.youtube.com/watch?v=SVgVzEVeP4Q" + }, + { + "video_id": "NF9rwQxsD1w", + "caption": "", + "question": "Is the person in this video trying to convince people to learn fast?", + "video_classes": [ + "news" + ], + "answers": [ + "yes" + ], + "video_link": "https://www.youtube.com/watch?v=NF9rwQxsD1w" + }, + { + "video_id": "Dnh0jP-GA0o", + "caption": "", + "question": "Does she code as a product manager based on the text?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "no" + ], + "video_link": "https://www.youtube.com/watch?v=Dnh0jP-GA0o" + }, + { + "video_id": "UXtrScuC30E", + "caption": "", + "question": "What is this video about?", + "video_classes": [ + "food" + ], + "answers": [ + "eggs" + ], + "video_link": "https://www.youtube.com/watch?v=UXtrScuC30E" + }, + { + "video_id": "bHssBHfHWmU", + "caption": "", + "question": "What kind of job is this guy recommending labtops for?", + "video_classes": [ + "entertainment" + ], + "answers": [ + "data analyst", + " data analysts" + ], + "video_link": "https://www.youtube.com/watch?v=bHssBHfHWmU" + }, + { + "video_id": "5pGSJlaVZmY", + "caption": "", + "question": "What sampling method is this video about?", + "video_classes": [ + "education" + ], + "answers": [ + "gibbs" + ], + "video_link": "https://www.youtube.com/watch?v=5pGSJlaVZmY" + }, + { + "video_id": "RSWTegVtUbk", + "caption": "", + "question": "Which country will this video talk about?", + "video_classes": [ + "nature" + ], + "answers": [ + "norway" + ], + "video_link": "https://www.youtube.com/watch?v=RSWTegVtUbk" + }, + { + "video_id": "mKHBDQ1kTJE", + "caption": "", + "question": "Which nature scene will be discussed in this video?", + "video_classes": [ + "nature" + ], + "answers": [ + "waterfall" + ], + "video_link": "https://www.youtube.com/watch?v=mKHBDQ1kTJE" + }, + { + "video_id": "ru032Mfsfig", + "caption": "", + "question": "What will this tutorial talk about?", + "video_classes": [ + "education" + ], + "answers": [ + "electricity" + ], + "video_link": "https://www.youtube.com/watch?v=ru032Mfsfig" + }, + { + "video_id": "mfiRJ1qgToc", + "caption": "", + "question": "How long is this tutorial?", + "video_classes": [ + "education" + ], + "answers": [ + "2 hours" + ], + "video_link": "https://www.youtube.com/watch?v=mfiRJ1qgToc" + } + ] +} \ No newline at end of file