floschne commited on
Commit
e07cc80
1 Parent(s): 2eaa1cc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md CHANGED
@@ -69,4 +69,81 @@ configs:
69
  path: data/train-*
70
  - split: test
71
  path: data/test-*
 
 
 
 
 
 
72
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  path: data/train-*
70
  - split: test
71
  path: data/test-*
72
+ license: cc-by-sa-4.0
73
+ language:
74
+ - en
75
+ pretty_name: WISMIR 3
76
+ size_categories:
77
+ - 100K<n<1M
78
  ---
79
+ # WISMIR3: A Multi-Modal Dataset to Challenge Text-Image Retrieval Approaches
80
+
81
+ This repository holds the WISMIR3 dataset. For more information, please refer to the paper:
82
+
83
+ ```bibtex
84
+ @inproceedings{
85
+ schneider2024wismir,
86
+ title={{WISMIR}3: A Multi-Modal Dataset to Challenge Text-Image Retrieval Approaches},
87
+ author={Florian Schneider and Chris Biemann},
88
+ booktitle={3rd Workshop on Advances in Language and Vision Research (ALVR)},
89
+ year={2024},
90
+ url={https://openreview.net/forum?id=Q93yqpfECQ}
91
+ }
92
+ ```
93
+
94
+ ## Columns
95
+
96
+ | ColumnId | Description | Datatype |
97
+ |-------------------|---------------------------------------------------------------------------|-----------|
98
+ | wikicaps_id | ID (line number) of the row in the original WikiCaps Dataset __img_en__ | int |
99
+ | wikimedia_file | Wikimedia File ID of the Image associated with the Caption | str |
100
+ | caption | Caption of the Image | str |
101
+ | image_path | Local path to the (downloaded) image | str |
102
+ | num_tok | Number of Tokens in the caption | int |
103
+ | num_sent | Number of Sentences in the caption | int |
104
+ | min_sent_len | Minimum number of Tokens in the Sentences of the caption | int |
105
+ | max_sent_len | Maximum number of Tokens in the Sentences of the caption | int |
106
+ | num_ne | Number of Named Entities in the caption | int |
107
+ | num_nouns | Number of Tokens with NOUN POS Tag | int |
108
+ | num_propn | Number of Tokens with PROPN POS Tag | int |
109
+ | num_conj | Number of Tokens with CONJ POS Tag | int |
110
+ | num_verb | Number of Tokens with VERB POS Tag | int |
111
+ | num_sym | Number of Tokens with SYM POS Tag | int |
112
+ | num_num | Number of Tokens with NUM POS Tag | int |
113
+ | num_adp | Number of Tokens with ADP POS Tag | int |
114
+ | num_adj | Number of Tokens with ADJ POS Tag | int |
115
+ | ratio_ne_tok | Ratio of tokens associated with Named Entities vs all Tokens | int |
116
+ | ratio_noun_tok | Ratio of tokens tagged as NOUN vs all Tokens | int |
117
+ | ratio_propn_tok | Ratio of tokens tagged as PROPN vs all Tokens | int |
118
+ | ratio_all_noun_tok| Ratio of tokens tagged as PROPN or NOUN vs all Tokens | int |
119
+ | fk_re_score | Flesch-Kincaid Reading Ease score of the Caption *** | int |
120
+ | fk_gl_score | Flesch-Kincaid Grade Level score of the Caption *** | int |
121
+ | dc_score | Dale-Chall score of the Caption *** | int |
122
+ | ne_texts | Surface form of detected NamedEntities | List[str] |
123
+ | ne_types | Types of the detected NamedEntities (PER, LOC, GPE, etc.) | List[str] |
124
+
125
+ ***
126
+ See [https://en.wikipedia.org/wiki/List_of_readability_tests_and_formulas](https://en.wikipedia.org/wiki/List_of_readability_tests_and_formulas) for more information about
127
+ Readability Scores
128
+
129
+ ## WikiCaps publication
130
+ WISMIR3 is based on the WikiCaps dataset. For more information about the WikiCaps, see [https://www.cl.uni-heidelberg.de/statnlpgroup/wikicaps/](https://www.cl.uni-heidelberg.de/statnlpgroup/wikicaps/)
131
+
132
+ ```bibtex
133
+ @inproceedings{schamoni-etal-2018-dataset,
134
+ title = "A Dataset and Reranking Method for Multimodal {MT} of User-Generated Image Captions",
135
+ author = "Schamoni, Shigehiko and
136
+ Hitschler, Julian and
137
+ Riezler, Stefan",
138
+ editor = "Cherry, Colin and
139
+ Neubig, Graham",
140
+ booktitle = "Proceedings of the 13th Conference of the Association for Machine Translation in the {A}mericas (Volume 1: Research Track)",
141
+ month = mar,
142
+ year = "2018",
143
+ address = "Boston, MA",
144
+ publisher = "Association for Machine Translation in the Americas",
145
+ url = "https://aclanthology.org/W18-1814",
146
+ pages = "140--153",
147
+ }
148
+
149
+ ```