File size: 4,247 Bytes
511e8b1 1d22d4d c5376ab 1d22d4d c5376ab 511e8b1 1d22d4d 8cde5cd 1d22d4d 8cde5cd 1d22d4d 7148e90 1d22d4d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | ---
language:
- en
task_categories:
- video-text-to-text
- visual-question-answering
tags:
- video
- question-answering
- visual-question-answering
- audio-visual
- situated-reasoning
- benchmark
- multimodal
- datasets
annotations_creators:
- crowdsourced
- expert-generated
language_creators:
- crowdsourced
multilinguality:
- monolingual
source_datasets:
- original
pretty_name: 'QIVD: Qualcomm Interactive Video Dataset'
size_categories:
- 1K<n<10K
configs:
- config_name: default
data_files:
- split: train
path: metadata.parquet
dataset_info:
features:
- name: video_file_name
dtype: string
- name: id
dtype: int64
- name: category
dtype: string
- name: question
dtype: string
- name: answer
dtype: string
- name: short_answer
dtype: string
- name: timestamp
dtype: string
splits:
- name: train
num_examples: 2900
license: other
---
# QIVD: Qualcomm Interactive Video Dataset
[](https://arxiv.org/abs/2503.19356)
[](https://www.qualcomm.com/developer/software/qualcomm-interactive-video-dataset-qivd)

A collection of 2,900 video clips paired with visual question-answer annotations.
Each clip is associated with exactly one question drawn from one of 13 fine-grained QA categories,
a full-sentence answer, a concise short answer, and a timestamp pinpointing the relevant moment in the video.
## Overview
QIVD is a dataset and benchmark for online, situated audio-visual question answering. Unlike existing video QA benchmarks that operate in an offline paradigm (full video + question given at once), QIVD captures a genuinely interactive setup: crowd workers recorded short egocentric clips while simultaneously speaking a question into the camera. The AI system must answer in real time from the audio-visual stream, identifying both what to answer and when to start answering.
## Dataset Structure
```
├── metadata.parquet
└── videos/
├── 00000000.mp4
├── 00000001.mp4
└── ...
```
### Schema
| Column | Type | Description |
|---|---|---|
| `video_file_name` | string | Repo-relative path to the video (`videos/XXXXXXXX.mp4`) |
| `id` | int64 | Unique annotation identifier |
| `category` | string | One of 13 semantic QA categories (see below) |
| `question` | string | Transcribed question spoken during recording |
| `answer` | string | Full natural-language answer |
| `short_answer` | string | Concise answer for exact-match evaluation; `"NA"` when no short form applies |
| `timestamp` | string | `MM:SS.s` — earliest moment in the clip when the question can be correctly answered |
## Usage
```python
from datasets import load_dataset
ds = load_dataset("Qualcomm-AI-Research/QIVD")
print(ds["train"][0])
# {
# 'video_file_name': 'videos/00000000.mp4',
# 'id': 1972,
# 'category': 'object referencing',
# 'question': "What am I holding in my left hand?",
# 'answer': "You are holding a Rubik's cube in your left hand.",
# 'short_answer': "A Rubik's cube",
# 'timestamp': '00:04.4'
# }
```
To download a specific video:
```python
from huggingface_hub import hf_hub_download
video_path = hf_hub_download(
repo_id="Qualcomm-AI-Research/QIVD",
filename="videos/00000000.mp4",
repo_type="dataset",
)
```
## Dataset License
This dataset is released for research purposes only. Use of the dataset is subject to the license terms of the Qualcomm Interactive Video Dataset. Please refer to the [accompanying license documentation](https://huggingface.co/datasets/Qualcomm-AI-Research/QIVD/blob/main/license.pdf) for full terms, conditions, and usage restrictions.
## Citation
```bibtex
@inproceedings{pourreza2026can,
title={Can Vision-Language Models Answer Face to Face Questions in the Real-World?},
author={Reza Pourreza and Rishit Dagli and Apratim Bhattacharyya and Sunny Panchal and Guillaume Berger and Roland Memisevic},
booktitle={The Fourteenth International Conference on Learning Representations},
year={2026},
url={https://openreview.net/forum?id=I3dPEvbp8o}
}
``` |