Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html>
<h"... is not valid JSON
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
MarioQA MCQ Dataset
This dataset contains 268 samples from the MarioQA benchmark for video question answering in Mario gameplay.
Dataset Structure
Each sample contains:
- file_name: Path to the video file
- question: The question about the video
- options: List of 4 possible answers
- answer: The correct answer (a, b, c, or d)
- question_type: Type of question (e.g., event-centric)
- event: The event type
- temporal_relationship: Temporal relationship code
Usage
from datasets import load_dataset
dataset = load_dataset("advaitgupta/marioqa-mcq")
# Access a sample
sample = dataset['train'][0]
print(sample['question'])
print(sample['options'])
print(sample['answer'])
Citation
If you use this dataset, please cite the original MarioQA paper.
License
MIT License
- Downloads last month
- 285