This repo provides the Video Timeline Tags (ViTT) dataset introduced in Multimodal Pretraining for Dense Video Captioning (arXiv | presentation | slides).
If you find the data or paper useful for your own work, please consider citing:
@inproceedings{huang2020multimodal,
title={Multimodal Pretraining for Dense Video Captioning},
author={Huang, Gabriel and Pang, Bo and Zhu, Zhenhai and Rivera, Clara and Soricut, Radu},
booktitle={AACL-IJCNLP 2020},
year={2020}
}
Data files for this dataset can be downloaded via the following links:
The ViTT dataset consists of human produced segment-level annotations for 8,169 videos. Of these, 5,840 videos have been annotated once, and the rest of the videos have been annotated twice or more. A total of 12,461 sets of annotations are released in ViTT-annotations.json. Below is an example set of annotations from the dataset:
{
"id": "FmTp",
"annotations": [
{
"timestamp": 260,
"tag": "Opening"
},
{
"timestamp": 16000,
"tag": "Displaying technique"
},
{
"timestamp": 23990,
"tag": "Showing foot positioning"
},
{
"timestamp": 55530,
"tag": "Demonstrating crossover"
},
{
"timestamp": 114100,
"tag": "Closing"
}
]
}
Data fields:
id is the id for the video from YouTube-8M release, which was a randomly-generated ID to protect the privacy of uploaders. The external YouTube ID can be looked up following the instructions on this page, as long as the video remains public on YouTube.annotations contain a list of segment-level annotations. In this example, the annotator had identified 5 sections in the video. For each section,
timestamp is the start time (in milliseconds) for that section, andtag is a free-text tag describing the content of that section concisely. There are 3 annotations (from 3 different annotators) included for this video in the json file.For experiments described in the paper, we have additionally gone through the following steps:
[train|dev|test]_id.txt) for reproducibility.Please refer to Appendix A.1 in the paper for details on the dataset construction and guidelines for human annotation.
14 commits
6 commits
This repo provides the Video Timeline Tags (ViTT) dataset introduced in Multimodal Pretraining for Dense Video Captioning (arXiv | presentation | slides).
If you find the data or paper useful for your own work, please consider citing:
@inproceedings{huang2020multimodal,
title={Multimodal Pretraining for Dense Video Captioning},
author={Huang, Gabriel and Pang, Bo and Zhu, Zhenhai and Rivera, Clara and Soricut, Radu},
booktitle={AACL-IJCNLP 2020},
year={2020}
}
Data files for this dataset can be downloaded via the following links:
The ViTT dataset consists of human produced segment-level annotations for 8,169 videos. Of these, 5,840 videos have been annotated once, and the rest of the videos have been annotated twice or more. A total of 12,461 sets of annotations are released in ViTT-annotations.json. Below is an example set of annotations from the dataset:
{
"id": "FmTp",
"annotations": [
{
"timestamp": 260,
"tag": "Opening"
},
{
"timestamp": 16000,
"tag": "Displaying technique"
},
{
"timestamp": 23990,
"tag": "Showing foot positioning"
},
{
"timestamp": 55530,
"tag": "Demonstrating crossover"
},
{
"timestamp": 114100,
"tag": "Closing"
}
]
}
Data fields:
id is the id for the video from YouTube-8M release, which was a randomly-generated ID to protect the privacy of uploaders. The external YouTube ID can be looked up following the instructions on this page, as long as the video remains public on YouTube.annotations contain a list of segment-level annotations. In this example, the annotator had identified 5 sections in the video. For each section,
timestamp is the start time (in milliseconds) for that section, andtag is a free-text tag describing the content of that section concisely. There are 3 annotations (from 3 different annotators) included for this video in the json file.For experiments described in the paper, we have additionally gone through the following steps:
[train|dev|test]_id.txt) for reproducibility.Please refer to Appendix A.1 in the paper for details on the dataset construction and guidelines for human annotation.
14 commits
6 commits