kinetics400
收藏Kinetics-400 视频数据集概述
数据集来源
- 原始数据集:Kinetics-400
- 原始作者:Will Kay, Joao Carreira, Karen Simonyan, Brian Zhang, Chloe Hillier, Sudheendra Vijayanarasimhan, Fabio Viola, Tim Green, Trevor Back, Paul Natsev, Mustafa Suleyman, Andrew Zisserman
- 原始论文:"The Kinetics Human Action Video Dataset" (https://arxiv.org/abs/1705.06950)
- 原始许可:Creative Commons Attribution 4.0 International License (CC BY 4.0)
许可信息
- 许可类型:Creative Commons Attribution 4.0 International License (CC BY 4.0)
- 允许行为:
- 共享 — 以任何媒介或格式复制和重新分发材料
- 改编 — 对材料进行混合、转换和构建,可用于任何目的,包括商业用途
- 许可条件:
- 署名 — 必须提供适当的署名,提供许可链接,并说明是否进行了更改
- 无附加限制 — 不得应用法律条款或技术措施,以法律形式限制他人执行许可允许的任何操作
数据集基本信息
- 视频数量:241181
- 格式:Hugging Face Dataset
- 结构:分层结构(视频 → 片段 → 帧)
- 最后更新日期:2025-05-24 08:14:07
数据集结构
- video_id:视频的唯一标识符
- video_path:视频文件的路径
- metadata:视频元数据,包括分辨率、帧率、质量指标等
- clips:从视频中提取的片段列表
- clip_name:片段的唯一标识符
- clip_path:片段文件的路径
- start_time:原始视频中的开始时间
- duration:片段持续时间
- frames_count:片段中的帧数
- quality_metrics:各种质量分数
- frames:片段中的帧列表
- frame_number:片段中的帧号
- image_path:帧图像的路径
- annotation:帧注释
- annotation_extra:额外的帧注释
- clip_score:帧剪辑分数
- aesthetic_score:帧美学分数
使用方法
python from datasets import load_dataset
从Hugging Face Hub加载数据集
dataset = load_dataset("liuhuanjim013/kinetics400")
访问数据
for video in dataset[train]: print(Video ID: +video[video_id]) print(Number of clips: +str(len(video[clips])))
对原始数据集的修改
- 添加了帧级注释
- 为每个片段和帧添加了质量指标
- 增强了元数据,包括分辨率、帧率和编解码器信息
- 精选了高质量片段的子集
引用要求
bibtex @article{DBLP:journals/corr/KayCSZHVVGNSZ17, author = {Will Kay and Joao Carreira and Karen Simonyan and Brian Zhang and Chloe Hillier and Sudheendra Vijayanarasimhan and Fabio Viola and Tim Green and Trevor Back and Paul Natsev and Mustafa Suleyman and Andrew Zisserman}, title = {The Kinetics Human Action Video Dataset}, journal = {CoRR}, volume = {abs/1705.06950}, year = {2017}, url = {http://arxiv.org/abs/1705.06950}, archivePrefix = {arXiv}, eprint = {1705.06950}, timestamp = {Mon, 13 Aug 2018 16:48:30 +0200}, biburl = {https://dblp.org/rec/journals/corr/KayCSZHVVGNSZ17.bib}, bibsource = {dblp computer science bibliography, https://dblp.org} }




