StreamDelta
收藏资源简介:
Streamo-Instruct-465K 是一个用于流式视频指令微调的数据集,旨在训练能够实时响应视频流事件的交互式视频语言模型。数据集包含约465K个视频问答对,每个样本包含原始标注格式与转换后的多轮对话流格式。原始标注中,问题带有时间戳(如"5"表示第5秒出现),响应包含事件的起始时间(st_time)、结束时间(end_time)以及即时响应时间(time)。训练数据采用多轮对话形式,每轮对应一个视频帧(1fps),使用特殊token标记模型状态:</Silence>表示无相关事件,</Standby>表示事件进行中,</Response>表示事件完成并开始输出答案。数据来源为自定义标注,任务类型为问答(QA)。数据集支持通过提供的脚本从原始格式转换为训练格式,适用于开发能够流式处理视频并生成即时响应的通用助手。
Streamo-Instruct-465K is a dataset for streaming video instruction fine-tuning, designed to train interactive video-language models capable of real-time response to video stream events. The dataset contains approximately 465K video question-answer pairs, each sample includes both the original annotation format and the converted multi-turn dialogue stream format. In the original annotations, questions are timestamped (e.g., "5" indicating appearance at the 5th second), and responses include the start time (st_time), end time (end_time), and immediate response time (time). Training data adopts a multi-turn dialogue format, with each turn corresponding to a video frame (1fps), using special tokens to mark model states: </Silence> indicates no relevant event, </Standby> indicates an ongoing event, and </Response> indicates the event is complete and the answer is output. The data source is custom annotation, and the task type is question answering (QA). The dataset supports conversion from the original format to the training format via provided scripts, suitable for developing general-purpose assistants that can stream video and generate instant responses.
数据集概述
基本信息
- 数据集名称:Streamo-Instruct
- 所属项目:Streamo(流式视频指令微调)
- 对应论文:Streaming Video Instruction Tuning(已被CVPR 2026接收)
- 发布机构:maifoundations
- 发布时间:2026年1月27日
数据集定位
该数据集用于训练流式视频大语言模型(Streaming Video LLM),使模型能够作为通用交互式助手,对实时视频流进行实时理解和响应。
数据集规模
数据集名称为 Streamo-Instruct-465K,推测包含约46.5万条指令数据。
数据格式
原始数据格式
原始标注文件(raw_data.json)包含视频名称、路径、任务类型、问题(含出现时间)和回答(含事件起止时间)等信息,支持将视频事件与时间戳精确关联。
训练数据格式(流式格式)
训练数据采用多轮对话格式,每轮对应一个视频帧(视频以1fps采样),对话中包含系统提示、用户问题、时间戳区间标记(如<0s-1s>)以及特殊的流式标记。
特殊Token说明
| Token | 含义 |
|---|---|
</Silence> |
当前输入无相关事件 |
</Standby> |
事件正在进行但未完成 |
</Response> |
事件已完成,开始输出答案 |
使用方式
- 提供转换脚本
scripts/convert_streaming_video.py,可将原始数据转换为训练所需的流式格式 - 数据集的视频以1fps采样,
<stream>为当前帧占位符,训练时替换为<image> - 提供示例文件位于
dataset/example/目录
其他说明




