The dataset viewer is not available for this subset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 90, in _split_generators
inferred_arrow_schema = pa.concat_tables(pa_tables, promote_options="default").schema
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "pyarrow/table.pxi", line 6319, in pyarrow.lib.concat_tables
File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
pyarrow.lib.ArrowTypeError: Unable to merge: Field json has incompatible types: struct<entries: list<item: struct<annotation: string, scene_type: string, video: string>>, total: int64> vs list<item: struct<answer_text: string, answer_time: string, is_interrupted: bool, question_text: string, question_time: string, question_type: string>>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.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.
OmniInteract
Benchmarking Real-World Streaming Interaction for Real-Time Omnimodal Assistants
OmniInteract is a streaming benchmark for real-time omnimodal LLMs, evaluated through their native online inference over continuous audio-visual streams. User queries and ambient sounds live in the audio track, visual events live in the video, and a model must decide whether, when, and what to respond β without lookahead to future content.
- π Paper: arXiv:2605.26485
- π» Code & evaluation pipeline: github.com/Lucky-Lance/OmniInteract
Dataset at a glance
- 250 videos, 1,430 temporally grounded response slots
- 1Q1A (210 videos / 1,062 slots): localized single-response interaction β real-time, proactive, and nested
- 1QnA (40 videos / 368 slots): long-horizon continuous task monitoring (one instruction β many time-grounded answers)
- Domains: Chinese daily-life interaction (home, gym, museum, shopping, β¦) and English mathematical reasoning
Download
The dataset ships as a single archive data.tar.gz. Extract it to obtain the structure below:
tar -xzf data.tar.gz
Structure
.
βββ 1q1a/ # Chinese daily-life QA, 150 videos
β βββ videos/0001.mp4 ... 0150.mp4
β βββ annotations/0001.json ... 0150.json
β βββ video_json_map.json
βββ 1q1a_math/ # English math reasoning, 60 videos
β βββ videos/0001.mp4 ... 0060.mp4
β βββ annotations/0001.json ... 0060.json
β βββ video_json_map.json
βββ 1qna/ # Long-horizon cooking task monitoring, 40 videos
βββ videos_bench/
β βββ captaincook4d/*.mp4
β βββ egoper/*.mp4
βββ annotations/
βββ captaincook4d/*.json
βββ egoper/*.json
1q1a (150) + 1q1a_math (60) = 210 videos form the 1Q1A split; 1qna (40) forms the 1QnA split.
For each video NNNN.mp4, its ground truth is the same-numbered NNNN.json.
Annotation schema
Each 1q1a / 1q1a_math annotation is a list of QA entries:
[
{
"question_time": "00:01",
"question_text": "...",
"answer_time": "00:36",
"answer_text": "...",
"question_type": "realtime",
"is_interrupted": false
}
]
1q1a_math additionally carries a "source" URL per entry pointing to the original math problem.
video_json_map.json
Each 1Q1A subset ships a map with per-video metadata:
{
"total": 150,
"entries": [
{"video": "videos/0001.mp4", "annotation": "annotations/0001.json", "scene_type": "nested"},
{"video": "videos/0091.mp4", "annotation": "annotations/0091.json", "scene_type": "multi_turn"}
]
}
scene_type is "nested" for the 60 videos probing context switch / resumption, and "multi_turn" otherwise.
Usage
Evaluation (data preparation, LLM judging, slot scoring, and the paper-table metrics IA-QTF1 / IDS / NCCS) is reproduced by the code repository: github.com/Lucky-Lance/OmniInteract.
Citation
@article{lu2026omniinteract,
title = {OmniInteract: Benchmarking Real-World Streaming Interaction for Real-Time Omnimodal Assistants},
author = {Lu, Xudong and Li, Xueying and Wang, Annan and Bo, Yang and Chen, Jinpeng and Li, Zengliang and Yang, Nianzu and Liu, Rui and Yang, Xue and Hou, Jingwen and Li, Hongsheng},
journal = {arXiv preprint arXiv:2605.26485},
year = {2026}
}
- Downloads last month
- 46