Datasets:
Leyo
/

Languages:
English
Multilinguality:
monolingual
Size Categories:
100K<n<1M
Language Creators:
crowdsourced
Annotations Creators:
expert-generated
Source Datasets:
original
ArXiv:
License:
Leyo HF staff commited on
Commit
d9a9276
1 Parent(s): df8a741

improve model card

Browse files
Files changed (2) hide show
  1. .vscode/launch.json +16 -0
  2. README.md +80 -1
.vscode/launch.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "name": "Python: Current File",
9
+ "type": "python",
10
+ "request": "launch",
11
+ "program": "tgif.py",
12
+ "console": "integratedTerminal",
13
+ "justMyCode": true
14
+ }
15
+ ]
16
+ }
README.md CHANGED
@@ -19,4 +19,83 @@ task_categories:
19
  - visual-question-answering
20
  task_ids:
21
  - closed-domain-qa
22
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  - visual-question-answering
20
  task_ids:
21
  - closed-domain-qa
22
+ ---
23
+
24
+
25
+ # Dataset Card for [Dataset Name]
26
+ ## Table of Contents
27
+ - [Table of Contents](#table-of-contents)
28
+ - [Dataset Description](#dataset-description)
29
+ - [Dataset Summary](#dataset-summary)
30
+ - [Languages](#languages)
31
+ - [Dataset Structure](#dataset-structure)
32
+ - [Data Fields](#data-fields)
33
+ - [Data Splits](#data-splits)
34
+ - [Dataset Creation](#dataset-creation)
35
+
36
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
37
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
38
+ - [Social Impact of Dataset](#social-impact-of-dataset)
39
+ - [Discussion of Biases](#discussion-of-biases)
40
+ - [Other Known Limitations](#other-known-limitations)
41
+ - [Additional Information](#additional-information)
42
+ - [Licensing Information](#licensing-information)
43
+ - [Citation Information](#citation-information)
44
+ - [Contributions](#contributions)
45
+ ## Dataset Description
46
+ - **Homepage:** http://raingo.github.io/TGIF-Release/
47
+ - **Repository:** https://github.com/raingo/TGIF-Release
48
+ - **Paper:** https://arxiv.org/abs/1604.02748
49
+ - **Point of Contact:** mailto: yli@cs.rochester.edu
50
+ ### Dataset Summary
51
+ The Tumblr GIF (TGIF) dataset contains 100K animated GIFs and 120K sentences describing visual content of the animated GIFs. The animated GIFs have been collected from Tumblr, from randomly selected posts published between May and June of 2015. We provide the URLs of animated GIFs in this release. The sentences are collected via crowdsourcing, with a carefully designed annotation interface that ensures high quality dataset. We provide one sentence per animated GIF for the training and validation splits, and three sentences per GIF for the test split. The dataset shall be used to evaluate animated GIF/video description techniques.
52
+ ### Languages
53
+ The captions in the dataset are in English.
54
+ ## Dataset Structure
55
+ ### Data Fields
56
+ - `video_path`: `str` "https://31.media.tumblr.com/001a8b092b9752d260ffec73c0bc29cd/tumblr_ndotjhRiX51t8n92fo1_500.gif"
57
+ -`video_bytes`: `large_bytes` video file in bytes format
58
+ - `en_global_captions`: `list_str` List of english captions describing the entire video
59
+
60
+ ### Data Splits
61
+ | |train |validation| test | Overall |
62
+ |-------------|------:|---------:|------:|------:|
63
+ |# of GIFs|80,000 |10,708 |11,360 |102,068 |
64
+ ### Annotations
65
+ Quoting [TGIF paper](https://arxiv.org/abs/1604.02748): \
66
+ "We annotated animated GIFs with natural language descriptions using the crowdsourcing service CrowdFlower.
67
+ We carefully designed our annotation task with various
68
+ quality control mechanisms to ensure the sentences are both
69
+ syntactically and semantically of high quality.
70
+ A total of 931 workers participated in our annotation
71
+ task. We allowed workers only from Australia, Canada, New Zealand, UK and USA in an effort to collect fluent descriptions from native English speakers. Figure 2 shows the
72
+ instructions given to the workers. Each task showed 5 animated GIFs and asked the worker to describe each with one
73
+ sentence. To promote language style diversity, each worker
74
+ could rate no more than 800 images (0.7% of our corpus).
75
+ We paid 0.02 USD per sentence; the entire crowdsourcing
76
+ cost less than 4K USD. We provide details of our annotation
77
+ task in the supplementary material."
78
+ ### Personal and Sensitive Information
79
+ Nothing specifically mentioned in the paper.
80
+ ## Considerations for Using the Data
81
+ ### Social Impact of Dataset
82
+ [More Information Needed]
83
+ ### Discussion of Biases
84
+ [More Information Needed]
85
+ ### Other Known Limitations
86
+ [More Information Needed]
87
+ ## Additional Information
88
+ ### Licensing Information
89
+ This dataset is provided to be used for approved non-commercial research purposes. No personally identifying information is available in this dataset.
90
+ ### Citation Information
91
+ ```bibtex
92
+ @InProceedings{tgif-cvpr2016,
93
+ author = {Li, Yuncheng and Song, Yale and Cao, Liangliang and Tetreault, Joel and Goldberg, Larry and Jaimes, Alejandro and Luo, Jiebo},
94
+ title = "{TGIF: A New Dataset and Benchmark on Animated GIF Description}",
95
+ booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
96
+ month = {June},
97
+ year = {2016}
98
+ }
99
+ ```
100
+ ### Contributions
101
+ Thanks to [@leot13](https://github.com/leot13) for adding this dataset.