Datasets:

Languages:
English
ArXiv:
License:
Leyo commited on
Commit
42ab602
·
1 Parent(s): 636ed93

create readme

Browse files
Files changed (1) hide show
  1. README.md +95 -1
README.md CHANGED
@@ -1,3 +1,97 @@
1
  ---
2
- license: other
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - crowdsourced
6
+ languages:
7
+ - en
8
+ licenses:
9
+ - other
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: ActivityNet Captions
13
+ size_categories:
14
+ - 10k<n<100K
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - video-captionning
19
+ task_ids:
20
+ - closed-domain-qa
21
  ---
22
+
23
+
24
+ # Dataset Card for ActivityNet Captions
25
+ ## Table of Contents
26
+ - [Table of Contents](#table-of-contents)
27
+ - [Dataset Description](#dataset-description)
28
+ - [Dataset Summary](#dataset-summary)
29
+ - [Languages](#languages)
30
+ - [Dataset Structure](#dataset-structure)
31
+ - [Data Fields](#data-fields)
32
+ - [Data Splits](#data-splits)
33
+ - [Dataset Creation](#dataset-creation)
34
+
35
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
36
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
37
+ - [Social Impact of Dataset](#social-impact-of-dataset)
38
+ - [Discussion of Biases](#discussion-of-biases)
39
+ - [Other Known Limitations](#other-known-limitations)
40
+ - [Additional Information](#additional-information)
41
+ - [Licensing Information](#licensing-information)
42
+ - [Citation Information](#citation-information)
43
+ - [Contributions](#contributions)
44
+ ## Dataset Description
45
+ - **Homepage:** https://cs.stanford.edu/people/ranjaykrishna/densevid/
46
+ - **Paper:** https://arxiv.org/abs/1705.00754
47
+
48
+ ### Dataset Summary
49
+ The ActivityNet Captions dataset connects videos to a series of temporally annotated sentence descriptions. Each sentence covers an unique segment of the video, describing multiple events that occur. These events may occur over very long or short periods of time and are not limited in any capacity, allowing them to co-occur. On average, each of the 20k videos contains 3.65 temporally localized sentences, resulting in a total of 100k sentences. We find that the number of sentences per video follows a relatively normal distribution. Furthermore, as the video duration increases, the number of sentences also increases. Each sentence has an average length of 13.48 words, which is also normally distributed. You can find more details of the dataset under the ActivityNet Captions Dataset section, and under supplementary materials in the paper.
50
+ ### Languages
51
+ The captions in the dataset are in English.
52
+ ## Dataset Structure
53
+ ### Data Fields
54
+ - `video_id` : `str` unique identifier for the video
55
+ - `video_path`: `str` Path to the video file
56
+ -`duration`: `float32` Duration of the video
57
+ - `captions_starts`: `List_float32` List of timestamps denoting the time at which each caption starts
58
+ - `captions_ends`: `List_float32` List of timestamps denoting the time at which each caption ends
59
+ - `en_captions`: `list_str` List of english captions describing parts of the video
60
+
61
+ ### Data Splits
62
+ | |train |validation| test | Overall |
63
+ |-------------|------:|---------:|------:|------:|
64
+ |# of videos|10,009 |4,917 |4,885 |19,811 |
65
+ ### Annotations
66
+ Quoting [ActivityNet Captions' paper](https://arxiv.org/abs/1705.00754): \
67
+ "Each annotation task was divided into two steps: (1)
68
+ Writing a paragraph describing all major events happening
69
+ in the videos in a paragraph, with each sentence of the paragraph describing one event, and (2) Labeling the
70
+ start and end time in the video in which each sentence in the
71
+ paragraph event occurred."
72
+ ### Who annotated the dataset?
73
+ Amazon Mechnical Turk annotators
74
+ ### Personal and Sensitive Information
75
+ Nothing specifically mentioned in the paper.
76
+ ## Considerations for Using the Data
77
+ ### Social Impact of Dataset
78
+ [More Information Needed]
79
+ ### Discussion of Biases
80
+ [More Information Needed]
81
+ ### Other Known Limitations
82
+ [More Information Needed]
83
+ ## Additional Information
84
+ ### Licensing Information
85
+ [More Information Needed]
86
+ ### Citation Information
87
+ ```bibtex
88
+ @InProceedings{tgif-cvpr2016,
89
+ @inproceedings{krishna2017dense,
90
+ title={Dense-Captioning Events in Videos},
91
+ author={Krishna, Ranjay and Hata, Kenji and Ren, Frederic and Fei-Fei, Li and Niebles, Juan Carlos},
92
+ booktitle={International Conference on Computer Vision (ICCV)},
93
+ year={2017}
94
+ }
95
+ ```
96
+ ### Contributions
97
+ Thanks to [@leot13](https://github.com/leot13) for adding this dataset.