Video_VJEPA_CMPR_ADJ
收藏资源简介:
Video_VJEPA_CMPR_ADJ 是一个派生潜在表示数据集,包含从 VideoChat3 Stage-3 训练视频中提取并经过压缩处理的视觉特征。该数据集不包含原始视频文件,而是提供了视频内容经过 V-JEPA 2.1 视觉变换器编码和 SoftTOME(Moore-adjacent 合并)压缩后的潜在表示。每个数据样本对应一个16秒(或64帧,采样率为4 fps)的视频片段,被压缩为一组固定的1536个维度为768的令牌。此外,数据还包含每个幸存令牌在管状体网格坐标系中的质心坐标 `(t, x, y)`,以及在后续分片中提供的每个令牌的显著性/重要性分数。数据集适用于需要预计算视觉记忆或 JEPA 风格潜在流的研究任务,例如训练能够消费 SoftTOME 令牌和坐标的模型,或进行压缩视频令牌、时序顺序和坐标条件记忆等相关研究。数据以分片形式组织,早期分片(0000-0010)仅包含张量和质心,后续分片(0011-0017)额外包含重要性分数。每个样本存储为 PyTorch `.pt` 文件,包含 `tensor`、`centroids`、`saliency`(可选)、`stem`、`chunk` 和 `meta` 等字段。
Video_VJEPA_CMPR_ADJ is a derived latent representation dataset containing visual features extracted and compressed from the training videos of VideoChat3 Stage-3. This dataset does not include the original video files; instead, it provides latent representations of video content encoded by the V-JEPA 2.1 visual transformer and compressed via SoftTOME (Moore-adjacent merging). Each data sample corresponds to a 16-second video clip (or 64 frames at a sampling rate of 4 fps), which is compressed into a fixed set of 1536 tokens each with a dimension of 768. Additionally, the dataset includes the centroid coordinates `(t, x, y)` of each surviving token in the tubular grid coordinate system, as well as the saliency/importance scores for each token, which will be provided in subsequent data shards. This dataset is applicable to research tasks requiring precomputed visual memory or JEPA-style latent streams, such as training models that consume SoftTOME tokens and their corresponding coordinates, or conducting studies on compressed video tokens, temporal ordering, and coordinate-conditioned memory. The data is organized into shards: early shards (0000–0010) only contain tensors and centroids, while later shards (0011–0017) additionally include the saliency/importance scores. Each sample is stored as a PyTorch `.pt` file, with fields including `tensor`, `centroids`, `saliency` (optional), `stem`, `chunk`, and `meta`.
数据集概述:Video_VJEPA_CMPR_ADJ
基本信息
- 数据集名称:Video V-JEPA SoftTOME Compressed Adjacent Latents
- 许可证:其他(未明确指定)
- 任务类别:特征提取、视频分类
- 标签:video, v-jepa, softtome, latents, centroids, saliency, importance, videochat3
- 数据规模:100K < n < 1M
- 数据集地址:https://huggingface.co/datasets/rookierufus/Video_VJEPA_CMPR_ADJ
数据集来源
- 源视频:来自 VideoChat3 Stage-3 训练媒体库(VideoChat3-Stage3-Training-Data 视频池,约 9.2k 个 mp4 文件)
- 父论文:VideoChat3(arXiv:2607.14935)
- 父项目:MCG-NJU/VideoChat3(GitHub)
- 说明:本数据集仅存储从这些视频计算得到的下游 SoftTOME 潜变量,不重新分发原始 mp4 视频
数据集内容
处理流程概述
- 视频解码:单次 ffmpeg 遍历每个 mp4,采样 fps=4,短边缩放至 438,中心裁剪至 384×384,输出 [T, 384, 384, 3] RGB 数组
- 分块:非重叠的 64 帧窗口(16 秒),丢弃不足 64 帧的尾部
- 编码与压缩(GPU):使用 V-JEPA 2.1 ViT-B 骨干网络,经 Col-Ln 显著性计算、SoftTOME 合并,输出每个块的压缩潜变量
- 写入:原子写入 .pt 文件,按分片目录滚动存储
- 发布:将活跃写目标分片打包为 tar 文件上传至 Hugging Face
仓库布局
shards/:初始运行,包含 tensor + centroids(无 saliency),shard_0000.tar 至 shard_0010.tartar_continuation_importance/:延续运行,包含 tensor + centroids + saliency,shard_0011.tar 至 shard_0017.tar- 每个分片约 50 GiB 本地 .pt 文件打包成 tar
文件结构
- 每个
.pt文件包含一个字典,键值如下:- tensor:[1536, 768] float32,SoftTOME 压缩后的 V-JEPA 潜变量
- centroids:[1536, 3] float32,最终 SoftTOME 质心,布局为 (t, x, y) 管状网格坐标
- saliency:[1536] float32,每个幸存者的 SoftTOME 显著性/重要性质量(仅存在于 tar_continuation_importance/ 中)
- stem:str,视频键标识符
- chunk:int,块索引 k
- meta:dict,包含 frames、centroid_layout、centroid_space、score_kind 等元信息
网格几何信息(每个 64 帧块)
- 输入视频片段:[64, 384, 384, 3]
- V-JEPA 管状网格:时间 64/2=32,空间 384/16=24 → 总令牌数 N=32×24×24=18432
- SoftTOME 保留比例 1/12 → 幸存者数 K=1536
- 质心按与 tensor 行相同的顺序排列(排序键使用 (t, y, x) 然后映射为存储的 (t, x, y))
- 当存在时,saliency[i] 与 tensor[i] 和 centroids[i] 对齐
显著性/重要性分数
- 计算方式:Col-Ln 产生原始管状显著性分数 → 每块 min-max 归一化 → SoftTOME 合并相邻节点 → 存储合并后的质量 S
- 存储位置:仅在延续分片(tar_continuation_importance/shard_0011 至 shard_0017)中包含
- 使用建议:作为块内相对重要性排序/加权,可用于重要性采样、令牌丢弃课程或基于质量的坐标条件记忆
- 注意事项:Col-Ln 每块 min-max 归一化 + SoftTOME 合并使得跨块比较仅为近似值
预期用途
- 预计算视觉记忆 / JEPA 风格潜变量流,用于训练消费 SoftTOME 令牌和坐标的模型
- 研究压缩视频令牌、时序顺序和坐标条件记忆
- 不替代原始的 VideoChat3 QA / 对话注释
限制与注意事项
- 短于 16 秒(4 fps 采样后)的视频产生零个块,被跳过
- SoftTOME 是随机的(有种子),质心是合并后的连续管状网格值
- saliency 仅在延续分片中可用,早期分片缺失,应始终使用
obj.get("saliency") - 早期分片(shards/0000–0010)每个文件约 54 MiB(因保存批次视图未克隆存储),逻辑张量正确;延续分片约 4.5 MiB/文件并包含 saliency
- 完整生产运行包含 shard_0000 至 shard_0017,约 74.8k 延续块加上早期阶段分片
引用建议
使用本潜变量数据集时,建议引用 VideoChat3(父视频来源)以及 V-JEPA / SoftTOME 方法。




