Datasets:
The dataset viewer is not available for this split.
Error code: StreamingRowsError
Exception: CastError
Message: Couldn't cast
sample_id: string
answer_style: string
system: string
dataset_source: string
video_path: string
event_query: string
span: list<item: double>
child 0, item: double
question_type: string
subagent_id: string
conversations: list<item: struct<from: string, value: string>>
child 0, item: struct<from: string, value: string>
child 0, from: string
child 1, value: string
reference_answer: string
timelens_by_source: struct<didemo: int64, hirest: int64, cosmo_cap: int64, internvid_vtime: int64, queryd: int64>
child 0, didemo: int64
child 1, hirest: int64
child 2, cosmo_cap: int64
child 3, internvid_vtime: int64
child 4, queryd: int64
reasoning_chars_median: int64
by_style: struct<reasoning: int64, direct: int64>
child 0, reasoning: int64
child 1, direct: int64
questions_per_video: struct<3: int64, 6: int64, 9: int64, 10: int64, 11: int64, 12: int64, 13: int64, 14: int64, 15: int6 (... 2 chars omitted)
child 0, 3: int64
child 1, 6: int64
child 2, 9: int64
child 3, 10: int64
child 4, 11: int64
child 5, 12: int64
child 6, 13: int64
child 7, 14: int64
child 8, 15: int64
videos: int64
verification: struct<reasoning_with_think: int64, reasoning_with_direct_instruction: int64, direct_with_direct_ins (... 150 chars omitted)
child 0, reasoning_with_think: int64
child 1, reasoning_with_direct_instruction: int64
child 2, direct_with_direct_instruction: int64
child 3, direct_with_think: int64
child 4, reasoning_final_answer: int64
child 5,
...
e_choice: list<item: int64>
child 0, item: int64
child 1, thumos14: list<item: int64>
child 0, item: int64
by_dataset: struct<thumos14: int64, timelens100k: int64, timelens_hallucination: int64>
child 0, thumos14: int64
child 1, timelens100k: int64
child 2, timelens_hallucination: int64
reasoning_chars_p90: int64
records: int64
question_types: struct<yes_no_count: int64, multiple_choice: int64, direct_action: int64>
child 0, yes_no_count: int64
child 1, multiple_choice: int64
child 2, direct_action: int64
hallucination_suppression: struct<questions: struct<hallu_ovo: int64, hallu_streaming: int64, hallu_crossvideo_pos: int64, hall (... 223 chars omitted)
child 0, questions: struct<hallu_ovo: int64, hallu_streaming: int64, hallu_crossvideo_pos: int64, hallu_crossvideo_neg: (... 6 chars omitted)
child 0, hallu_ovo: int64
child 1, hallu_streaming: int64
child 2, hallu_crossvideo_pos: int64
child 3, hallu_crossvideo_neg: int64
child 1, reasoning_kept: struct<hallu_ovo: int64, hallu_streaming: int64, hallu_crossvideo_pos: int64, hallu_crossvideo_neg: (... 6 chars omitted)
child 0, hallu_ovo: int64
child 1, hallu_streaming: int64
child 2, hallu_crossvideo_pos: int64
child 3, hallu_crossvideo_neg: int64
child 2, direct_labels: struct<No: int64, B: int64, A: int64, D: int64, C: int64>
child 0, No: int64
child 1, B: int64
child 2, A: int64
child 3, D: int64
child 4, C: int64
to
{'records': Value('int64'), 'videos': Value('int64'), 'by_style': {'reasoning': Value('int64'), 'direct': Value('int64')}, 'by_dataset': {'thumos14': Value('int64'), 'timelens100k': Value('int64'), 'timelens_hallucination': Value('int64')}, 'timelens_by_source': {'didemo': Value('int64'), 'hirest': Value('int64'), 'cosmo_cap': Value('int64'), 'internvid_vtime': Value('int64'), 'queryd': Value('int64')}, 'question_types': {'yes_no_count': Value('int64'), 'multiple_choice': Value('int64'), 'direct_action': Value('int64')}, 'reasoning_chars_median': Value('int64'), 'reasoning_chars_p90': Value('int64'), 'questions_per_video': {'3': Value('int64'), '6': Value('int64'), '9': Value('int64'), '10': Value('int64'), '11': Value('int64'), '12': Value('int64'), '13': Value('int64'), '14': Value('int64'), '15': Value('int64')}, 'verification': {'reasoning_with_think': Value('int64'), 'reasoning_with_direct_instruction': Value('int64'), 'direct_with_direct_instruction': Value('int64'), 'direct_with_think': Value('int64'), 'reasoning_final_answer': Value('int64'), 'direct_single_line': Value('int64'), 'mc_direct': Value('int64'), 'mc_direct_single_letter': Value('int64')}, 'hallucination_suppression': {'questions': {'hallu_ovo': Value('int64'), 'hallu_streaming': Value('int64'), 'hallu_crossvideo_pos': Value('int64'), 'hallu_crossvideo_neg': Value('int64')}, 'reasoning_kept': {'hallu_ovo': Value('int64'), 'hallu_streaming': Value('int64'), 'hallu_crossvideo_pos': Value('int64'), 'hallu_crossvideo_neg': Value('int64')}, 'direct_labels': {'No': Value('int64'), 'B': Value('int64'), 'A': Value('int64'), 'D': Value('int64'), 'C': Value('int64')}}, 'agreement': {'timelens_multiple_choice': List(Value('int64')), 'thumos14': List(Value('int64'))}}
because column names don't match
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 147, in get_rows_or_raise
return get_rows(
dataset=dataset,
...<4 lines>...
column_names=column_names,
)
File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
return func(*args, **kwargs)
File "/src/services/worker/src/worker/utils.py", line 127, in get_rows
rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
File "/src/services/worker/src/worker/utils.py", line 483, in safe_iter
yield from ds.decode(False) if ds.features else ds
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2840, in __iter__
for key, example in ex_iterable:
^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2373, in __iter__
for key, pa_table in self._iter_arrow():
~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2398, in _iter_arrow
for key, pa_table in self.ex_iterable._iter_arrow():
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
for key, pa_table in iterator:
^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
for key, pa_table in self.generate_tables_fn(**gen_kwags):
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 343, in _generate_tables
self._cast_table(pa_table, json_field_paths=json_field_paths),
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 132, in _cast_table
pa_table = table_cast(pa_table, self.info.features.arrow_schema)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2378, in table_cast
return cast_table_to_schema(table, schema)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2306, in cast_table_to_schema
raise CastError(
...<3 lines>...
)
datasets.table.CastError: Couldn't cast
sample_id: string
answer_style: string
system: string
dataset_source: string
video_path: string
event_query: string
span: list<item: double>
child 0, item: double
question_type: string
subagent_id: string
conversations: list<item: struct<from: string, value: string>>
child 0, item: struct<from: string, value: string>
child 0, from: string
child 1, value: string
reference_answer: string
timelens_by_source: struct<didemo: int64, hirest: int64, cosmo_cap: int64, internvid_vtime: int64, queryd: int64>
child 0, didemo: int64
child 1, hirest: int64
child 2, cosmo_cap: int64
child 3, internvid_vtime: int64
child 4, queryd: int64
reasoning_chars_median: int64
by_style: struct<reasoning: int64, direct: int64>
child 0, reasoning: int64
child 1, direct: int64
questions_per_video: struct<3: int64, 6: int64, 9: int64, 10: int64, 11: int64, 12: int64, 13: int64, 14: int64, 15: int6 (... 2 chars omitted)
child 0, 3: int64
child 1, 6: int64
child 2, 9: int64
child 3, 10: int64
child 4, 11: int64
child 5, 12: int64
child 6, 13: int64
child 7, 14: int64
child 8, 15: int64
videos: int64
verification: struct<reasoning_with_think: int64, reasoning_with_direct_instruction: int64, direct_with_direct_ins (... 150 chars omitted)
child 0, reasoning_with_think: int64
child 1, reasoning_with_direct_instruction: int64
child 2, direct_with_direct_instruction: int64
child 3, direct_with_think: int64
child 4, reasoning_final_answer: int64
child 5,
...
e_choice: list<item: int64>
child 0, item: int64
child 1, thumos14: list<item: int64>
child 0, item: int64
by_dataset: struct<thumos14: int64, timelens100k: int64, timelens_hallucination: int64>
child 0, thumos14: int64
child 1, timelens100k: int64
child 2, timelens_hallucination: int64
reasoning_chars_p90: int64
records: int64
question_types: struct<yes_no_count: int64, multiple_choice: int64, direct_action: int64>
child 0, yes_no_count: int64
child 1, multiple_choice: int64
child 2, direct_action: int64
hallucination_suppression: struct<questions: struct<hallu_ovo: int64, hallu_streaming: int64, hallu_crossvideo_pos: int64, hall (... 223 chars omitted)
child 0, questions: struct<hallu_ovo: int64, hallu_streaming: int64, hallu_crossvideo_pos: int64, hallu_crossvideo_neg: (... 6 chars omitted)
child 0, hallu_ovo: int64
child 1, hallu_streaming: int64
child 2, hallu_crossvideo_pos: int64
child 3, hallu_crossvideo_neg: int64
child 1, reasoning_kept: struct<hallu_ovo: int64, hallu_streaming: int64, hallu_crossvideo_pos: int64, hallu_crossvideo_neg: (... 6 chars omitted)
child 0, hallu_ovo: int64
child 1, hallu_streaming: int64
child 2, hallu_crossvideo_pos: int64
child 3, hallu_crossvideo_neg: int64
child 2, direct_labels: struct<No: int64, B: int64, A: int64, D: int64, C: int64>
child 0, No: int64
child 1, B: int64
child 2, A: int64
child 3, D: int64
child 4, C: int64
to
{'records': Value('int64'), 'videos': Value('int64'), 'by_style': {'reasoning': Value('int64'), 'direct': Value('int64')}, 'by_dataset': {'thumos14': Value('int64'), 'timelens100k': Value('int64'), 'timelens_hallucination': Value('int64')}, 'timelens_by_source': {'didemo': Value('int64'), 'hirest': Value('int64'), 'cosmo_cap': Value('int64'), 'internvid_vtime': Value('int64'), 'queryd': Value('int64')}, 'question_types': {'yes_no_count': Value('int64'), 'multiple_choice': Value('int64'), 'direct_action': Value('int64')}, 'reasoning_chars_median': Value('int64'), 'reasoning_chars_p90': Value('int64'), 'questions_per_video': {'3': Value('int64'), '6': Value('int64'), '9': Value('int64'), '10': Value('int64'), '11': Value('int64'), '12': Value('int64'), '13': Value('int64'), '14': Value('int64'), '15': Value('int64')}, 'verification': {'reasoning_with_think': Value('int64'), 'reasoning_with_direct_instruction': Value('int64'), 'direct_with_direct_instruction': Value('int64'), 'direct_with_think': Value('int64'), 'reasoning_final_answer': Value('int64'), 'direct_single_line': Value('int64'), 'mc_direct': Value('int64'), 'mc_direct_single_letter': Value('int64')}, 'hallucination_suppression': {'questions': {'hallu_ovo': Value('int64'), 'hallu_streaming': Value('int64'), 'hallu_crossvideo_pos': Value('int64'), 'hallu_crossvideo_neg': Value('int64')}, 'reasoning_kept': {'hallu_ovo': Value('int64'), 'hallu_streaming': Value('int64'), 'hallu_crossvideo_pos': Value('int64'), 'hallu_crossvideo_neg': Value('int64')}, 'direct_labels': {'No': Value('int64'), 'B': Value('int64'), 'A': Value('int64'), 'D': Value('int64'), 'C': Value('int64')}}, 'agreement': {'timelens_multiple_choice': List(Value('int64')), 'thumos14': List(Value('int64'))}}
because column names don't matchNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Video VQA SFT — mixed reasoning and direct answers
Supervised fine-tuning data for video question answering. Each sample appears in up to two styles: one that reasons before answering, and one that answers directly. Which style the model should produce is signalled in the user turn, not in a system prompt, because that is what the evaluation harnesses send.
Contents
| Records | 356,033 |
| Distinct videos | 19,808 |
| Reasoning style | 211,238 |
| Direct style | 144,795 |
| Source dataset | Records |
|---|---|
| TimeLens-100K | 320,094 |
| TimeLens-100K hallucination suppression | 27,100 |
| THUMOS-14 | 8,839 |
TimeLens records by video source: cosmo_cap 143,862, internvid_vtime 75,478, didemo 56,628, queryd 27,701, hirest 16,425.
Question types among TimeLens and THUMOS-14 reasoning records: yes_no_count 68,849, direct_action 64,425, multiple_choice 64,415.
Record format
{
"sample_id": "thumos14:validation/video_validation_0000683.mp4:baseball pitch:0",
"answer_style": "reasoning",
"system": "You are a helpful assistant.",
"dataset_source": "thumos14",
"video_path": "validation/video_validation_0000683.mp4",
"question_type": "yes_no_count",
"subagent_id": "d694b721-86a4-4bfe-b7ec-c4974fb2e444",
"conversations": [
{"from": "human", "value": "Video: ...\nQuestion: ...\nPlease think the following query step by step and provide your final concise response as 'FINAL ANSWER: <answer>'."},
{"from": "gpt", "value": "...reasoning...\n\nFINAL ANSWER: 1"}
],
"reference_answer": "1"
}
video_path is relative to the source dataset's own video archive; videos are
not included here. Records sharing a subagent_id were produced by one
generation call.
The two styles
The instruction that selects a style lives in the user turn:
- reasoning — ends with
Please think the following query step by step and provide your final concise response as 'FINAL ANSWER: <answer>'.The target is a short chain of observations followed byFINAL ANSWER: <answer>. - direct — ends with
Do not include any additional text or explanation in your response.The target is the bare answer: a count,Yes/No, or a single option letter. The hallucination-suppression subset keeps its upstream prompts, which sayYou can only answer yes or noorDo not explain.instead.
The signals are mutually exclusive across the whole file, verified:
211,238/211,238 reasoning records carry the reasoning instruction and
0 carry a direct one; 144,795/144,795 direct records carry a
direct instruction and 0 carry the reasoning one.
211,238/211,238 reasoning targets contain FINAL ANSWER:;
144,795/144,795 direct targets are a single line;
65,437/65,437 multiple-choice direct targets are one letter.
system is "You are a helpful assistant." on every record, matching the
default in OVO-Bench and StreamingBench evaluation. No task instruction is
placed there, since the benchmarks do not send one.
How it was built
Answers were generated with gemini-3.8-flash, gemini-3.7-flash and
gemini-3.6-flash at low thinking level, sending one video with one event's
three questions per request. Both styles come from a single generation: the model
returns a reasoning field and an answer field, which become the two records. The hallucination-suppression subset is the exception; see below.
Direct answers are normalised to a bare value; samples where the model hedged
(e.g. "1 (or 4 including replays)") keep only the reasoning record.
Hallucination-suppression subset
13,551 questions come from TimeLens-100K's hallucination-suppression probe sets. Each shows one video and asks something that video cannot support: whether its latest frames answer a question taken from another video (OVO), whether it is time to emit another video's trigger phrase (streaming readiness), or a multiple-choice question whose correct option is "Unable to answer" (cross-video positive). The cross-video negatives are the paired control: an answerable question about the same video's own content.
| Subset | Questions | Reasoning records |
|---|---|---|
| OVO evidence sufficiency | 6,431 | 6,430 |
| Streaming readiness | 5,991 | 5,991 |
| Cross-video MC, positive | 1,000 | 999 |
| Cross-video MC, answerable control | 129 | 129 |
These targets were not taken from the model. The labels are constructed rather than annotated, and the upstream generator validates them (0 violations on every invariant its report checks), so the reference is the target. Generation told the model the correct answer and asked it to ground that answer in what the video shows or lacks. A reasoning record is kept only when the model's own stated answer agrees with the reference; otherwise the question has a direct record only. Direct prompts are the subset's upstream prompts, verbatim. Each request carried up to six of one video's questions.
Video coverage is uneven across the run
TimeLens has 15 questions per video: 5 events, each asked three ways. Questions per video actually taken from the canonical question set, counting reasoning records:
| Questions taken | Videos |
|---|---|
| 3 | 3 |
| 6 | 865 |
| 9 | 14,924 |
| 10 | 1 |
| 11 | 2 |
| 12 | 187 |
| 13 | 3 |
| 14 | 4 |
| 15 | 3,425 |
19,414 of TimeLens-100K's 19,414 videos are represented. The largest group is 14,924 videos at 9 questions. Videos at 15 come from the earliest batches, which had no per-video cap; the cap was added later but did not bind until a bug was fixed, because it was applied to the unprocessed questions rather than to all of a video's questions. Later runs took whole events per video, three questions at a time, so the deeper groups are later events of videos already covered, not repeats of the same event. Treat the 15-question videos as a distinct, denser subset if per-video balance matters for your training mix.
Known limitations
- Reasoning is short. A median of 133 characters (p90 214). Most records are a single grounded observation rather than a multi-step chain. This follows from the low thinking level and from batching several questions per request.
- THUMOS-14 label noise. Reference answers were derived faithfully from
THUMOS-14 temporal annotations, but those annotations have errors: on
video_validation_0000266several spans containing clear baseball pitches are labelledFrisbeeCatchorAmbiguous.reference_answeris kept as metadata and did not drive generation. - Not verified against ground truth. Outside the hallucination-suppression subset, these are model outputs, not human labels. Agreement with THUMOS-14 references is 50.2%; with TimeLens multiple-choice references, 95.6%.
- Hallucination labels are almost all "No". 12,422 of the 13,551 hallucination-suppression direct targets are "No"; the cross-video negatives are the only answerable control. Mixing the whole subset in tilts yes/no readiness questions toward "No", so weigh it in your training mix.
- OVO-Bench overlap excluded. The 105 THUMOS-14 test questions whose videos appear in OVO-Bench's REC split are excluded, since OVO-Bench uses a byte-identical prompt template and is an evaluation target.
- Contains transcribed on-screen text. A handful of records repeat business contact details that appear in the source videos, including seven email addresses.
- Downloads last month
- 92