Datasets:
Tasks:
Visual Question Answering
Formats:
parquet
Sub-tasks:
visual-question-answering
Languages:
English
Size:
100K - 1M
ArXiv:
License:
Update files from the datasets library (from 1.1.3)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.1.3
compguesswhat.py
CHANGED
@@ -19,7 +19,7 @@ class CompguesswhatConfig(datasets.BuilderConfig):
|
|
19 |
**kwargs: keyword arguments forwarded to super.
|
20 |
"""
|
21 |
super(CompguesswhatConfig, self).__init__(
|
22 |
-
version=datasets.Version("0.
|
23 |
)
|
24 |
assert gameplay_scenario in (
|
25 |
"original",
|
@@ -73,7 +73,7 @@ class Compguesswhat(datasets.GeneratorBasedBuilder):
|
|
73 |
),
|
74 |
]
|
75 |
|
76 |
-
VERSION = datasets.Version("0.
|
77 |
|
78 |
def _info(self):
|
79 |
if self.config.gameplay_scenario == "original":
|
@@ -88,14 +88,27 @@ class Compguesswhat(datasets.GeneratorBasedBuilder):
|
|
88 |
"timestamp": datasets.Value("string"),
|
89 |
"status": datasets.Value("string"),
|
90 |
"image": {
|
|
|
91 |
"id": datasets.Value("int32"),
|
92 |
"file_name": datasets.Value("string"),
|
93 |
"flickr_url": datasets.Value("string"),
|
94 |
"coco_url": datasets.Value("string"),
|
95 |
"height": datasets.Value("int32"),
|
96 |
"width": datasets.Value("int32"),
|
97 |
-
|
98 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
},
|
100 |
"qas": datasets.features.Sequence(
|
101 |
{
|
@@ -203,7 +216,12 @@ class Compguesswhat(datasets.GeneratorBasedBuilder):
|
|
203 |
datasets.SplitGenerator(
|
204 |
name=split_name,
|
205 |
gen_kwargs={
|
206 |
-
"filepath": os.path.join(
|
|
|
|
|
|
|
|
|
|
|
207 |
},
|
208 |
)
|
209 |
)
|
@@ -224,6 +242,11 @@ class Compguesswhat(datasets.GeneratorBasedBuilder):
|
|
224 |
del game["questioner_id"]
|
225 |
###
|
226 |
|
|
|
|
|
|
|
|
|
|
|
227 |
return game["id"], game
|
228 |
|
229 |
"""Yields examples."""
|
|
|
19 |
**kwargs: keyword arguments forwarded to super.
|
20 |
"""
|
21 |
super(CompguesswhatConfig, self).__init__(
|
22 |
+
version=datasets.Version("0.2.0", "Second CompGuessWhat?! release"), **kwargs
|
23 |
)
|
24 |
assert gameplay_scenario in (
|
25 |
"original",
|
|
|
73 |
),
|
74 |
]
|
75 |
|
76 |
+
VERSION = datasets.Version("0.2.0")
|
77 |
|
78 |
def _info(self):
|
79 |
if self.config.gameplay_scenario == "original":
|
|
|
88 |
"timestamp": datasets.Value("string"),
|
89 |
"status": datasets.Value("string"),
|
90 |
"image": {
|
91 |
+
# this is the image ID in GuessWhat?! which corresponds to the MSCOCO id
|
92 |
"id": datasets.Value("int32"),
|
93 |
"file_name": datasets.Value("string"),
|
94 |
"flickr_url": datasets.Value("string"),
|
95 |
"coco_url": datasets.Value("string"),
|
96 |
"height": datasets.Value("int32"),
|
97 |
"width": datasets.Value("int32"),
|
98 |
+
# this field represents the corresponding image metadata that can be found in VisualGenome
|
99 |
+
# in the file image_data.json
|
100 |
+
# We copy it over so that we avoid any confusion or possible wrong URL
|
101 |
+
# Please use the original image files to resolve photos
|
102 |
+
"visual_genome": {
|
103 |
+
"width": datasets.Value("int32"),
|
104 |
+
"height": datasets.Value("int32"),
|
105 |
+
"url": datasets.Value("string"),
|
106 |
+
"coco_id": datasets.Value("int32"),
|
107 |
+
# this is the actual VisualGenome image ID
|
108 |
+
# because we can't rely store it as an integer we same it as string
|
109 |
+
"flickr_id": datasets.Value("string"),
|
110 |
+
"image_id": datasets.Value("string"),
|
111 |
+
},
|
112 |
},
|
113 |
"qas": datasets.features.Sequence(
|
114 |
{
|
|
|
216 |
datasets.SplitGenerator(
|
217 |
name=split_name,
|
218 |
gen_kwargs={
|
219 |
+
"filepath": os.path.join(
|
220 |
+
dl_dir,
|
221 |
+
full_split_name,
|
222 |
+
self.VERSION.version_str,
|
223 |
+
split_filename,
|
224 |
+
)
|
225 |
},
|
226 |
)
|
227 |
)
|
|
|
242 |
del game["questioner_id"]
|
243 |
###
|
244 |
|
245 |
+
if "visual_genome" in game["image"]:
|
246 |
+
# We need to cast it to string so that we avoid issues with int size
|
247 |
+
game["image"]["visual_genome"]["image_id"] = str(game["image"]["visual_genome"]["image_id"])
|
248 |
+
game["image"]["visual_genome"]["flickr_id"] = str(game["image"]["visual_genome"]["flickr_id"])
|
249 |
+
|
250 |
return game["id"], game
|
251 |
|
252 |
"""Yields examples."""
|
create_dummy_data.py
CHANGED
@@ -12,7 +12,12 @@ parser.add_argument(
|
|
12 |
required=True,
|
13 |
help="Data path containing the CompGuessWhat?! datasets (files with 'jsonl.gz' extension)",
|
14 |
)
|
15 |
-
parser.add_argument(
|
|
|
|
|
|
|
|
|
|
|
16 |
original_data_files = {
|
17 |
"train": "compguesswhat.train.jsonl.gz",
|
18 |
"valid": "compguesswhat.valid.jsonl.gz",
|
@@ -74,7 +79,7 @@ def main(args):
|
|
74 |
with open(dataset_info_path, encoding="utf-8") as in_file:
|
75 |
dataset_info = json.load(in_file)
|
76 |
|
77 |
-
dataset_version = dataset_info["
|
78 |
|
79 |
print(f"Creating dummy data for CompGuessWhat?! {dataset_version}")
|
80 |
|
|
|
12 |
required=True,
|
13 |
help="Data path containing the CompGuessWhat?! datasets (files with 'jsonl.gz' extension)",
|
14 |
)
|
15 |
+
parser.add_argument(
|
16 |
+
"--examples",
|
17 |
+
type=int,
|
18 |
+
default=5,
|
19 |
+
help="Number of games to consider in the dummy dataset",
|
20 |
+
)
|
21 |
original_data_files = {
|
22 |
"train": "compguesswhat.train.jsonl.gz",
|
23 |
"valid": "compguesswhat.valid.jsonl.gz",
|
|
|
79 |
with open(dataset_info_path, encoding="utf-8") as in_file:
|
80 |
dataset_info = json.load(in_file)
|
81 |
|
82 |
+
dataset_version = dataset_info["compguesswhat-original"]["version"]["version_str"]
|
83 |
|
84 |
print(f"Creating dummy data for CompGuessWhat?! {dataset_version}")
|
85 |
|
dataset_infos.json
CHANGED
@@ -1,396 +1 @@
|
|
1 |
-
{
|
2 |
-
"compguesswhat-original": {
|
3 |
-
"description": "\n CompGuessWhat?! is an instance of a multi-task framework for evaluating the quality of learned neural representations,\n in particular concerning attribute grounding. Use this dataset if you want to use the set of games whose reference\n scene is an image in VisualGenome. Visit the website for more details: https://compguesswhat.github.io\n ",
|
4 |
-
"citation": " @inproceedings{suglia2020compguesswhat,\n title={CompGuessWhat?!: a Multi-task Evaluation Framework for Grounded Language Learning},\n author={Suglia, Alessandro, Konstas, Ioannis, Vanzo, Andrea, Bastianelli, Emanuele, Desmond Elliott, Stella Frank and Oliver Lemon},\n booktitle={Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics},\n year={2020}\n }\n ",
|
5 |
-
"homepage": "https://compguesswhat.github.io/",
|
6 |
-
"license": "",
|
7 |
-
"features": {
|
8 |
-
"id": {
|
9 |
-
"dtype": "int32",
|
10 |
-
"id": null,
|
11 |
-
"_type": "Value"
|
12 |
-
},
|
13 |
-
"target_id": {
|
14 |
-
"dtype": "int32",
|
15 |
-
"id": null,
|
16 |
-
"_type": "Value"
|
17 |
-
},
|
18 |
-
"timestamp": {
|
19 |
-
"dtype": "string",
|
20 |
-
"id": null,
|
21 |
-
"_type": "Value"
|
22 |
-
},
|
23 |
-
"status": {
|
24 |
-
"dtype": "string",
|
25 |
-
"id": null,
|
26 |
-
"_type": "Value"
|
27 |
-
},
|
28 |
-
"image": {
|
29 |
-
"id": {
|
30 |
-
"dtype": "int32",
|
31 |
-
"id": null,
|
32 |
-
"_type": "Value"
|
33 |
-
},
|
34 |
-
"file_name": {
|
35 |
-
"dtype": "string",
|
36 |
-
"id": null,
|
37 |
-
"_type": "Value"
|
38 |
-
},
|
39 |
-
"flickr_url": {
|
40 |
-
"dtype": "string",
|
41 |
-
"id": null,
|
42 |
-
"_type": "Value"
|
43 |
-
},
|
44 |
-
"coco_url": {
|
45 |
-
"dtype": "string",
|
46 |
-
"id": null,
|
47 |
-
"_type": "Value"
|
48 |
-
},
|
49 |
-
"height": {
|
50 |
-
"dtype": "int32",
|
51 |
-
"id": null,
|
52 |
-
"_type": "Value"
|
53 |
-
},
|
54 |
-
"width": {
|
55 |
-
"dtype": "int32",
|
56 |
-
"id": null,
|
57 |
-
"_type": "Value"
|
58 |
-
},
|
59 |
-
"vg_id": {
|
60 |
-
"dtype": "int32",
|
61 |
-
"id": null,
|
62 |
-
"_type": "Value"
|
63 |
-
},
|
64 |
-
"vg_url": {
|
65 |
-
"dtype": "string",
|
66 |
-
"id": null,
|
67 |
-
"_type": "Value"
|
68 |
-
}
|
69 |
-
},
|
70 |
-
"qas": {
|
71 |
-
"feature": {
|
72 |
-
"question": {
|
73 |
-
"dtype": "string",
|
74 |
-
"id": null,
|
75 |
-
"_type": "Value"
|
76 |
-
},
|
77 |
-
"answer": {
|
78 |
-
"dtype": "string",
|
79 |
-
"id": null,
|
80 |
-
"_type": "Value"
|
81 |
-
},
|
82 |
-
"id": {
|
83 |
-
"dtype": "int32",
|
84 |
-
"id": null,
|
85 |
-
"_type": "Value"
|
86 |
-
}
|
87 |
-
},
|
88 |
-
"length": -1,
|
89 |
-
"id": null,
|
90 |
-
"_type": "Sequence"
|
91 |
-
},
|
92 |
-
"objects": {
|
93 |
-
"feature": {
|
94 |
-
"id": {
|
95 |
-
"dtype": "int32",
|
96 |
-
"id": null,
|
97 |
-
"_type": "Value"
|
98 |
-
},
|
99 |
-
"bbox": {
|
100 |
-
"feature": {
|
101 |
-
"dtype": "float32",
|
102 |
-
"id": null,
|
103 |
-
"_type": "Value"
|
104 |
-
},
|
105 |
-
"length": 4,
|
106 |
-
"id": null,
|
107 |
-
"_type": "Sequence"
|
108 |
-
},
|
109 |
-
"category": {
|
110 |
-
"dtype": "string",
|
111 |
-
"id": null,
|
112 |
-
"_type": "Value"
|
113 |
-
},
|
114 |
-
"area": {
|
115 |
-
"dtype": "float32",
|
116 |
-
"id": null,
|
117 |
-
"_type": "Value"
|
118 |
-
},
|
119 |
-
"category_id": {
|
120 |
-
"dtype": "int32",
|
121 |
-
"id": null,
|
122 |
-
"_type": "Value"
|
123 |
-
},
|
124 |
-
"segment": {
|
125 |
-
"feature": {
|
126 |
-
"feature": {
|
127 |
-
"dtype": "float32",
|
128 |
-
"id": null,
|
129 |
-
"_type": "Value"
|
130 |
-
},
|
131 |
-
"length": -1,
|
132 |
-
"id": null,
|
133 |
-
"_type": "Sequence"
|
134 |
-
},
|
135 |
-
"length": -1,
|
136 |
-
"id": null,
|
137 |
-
"_type": "Sequence"
|
138 |
-
}
|
139 |
-
},
|
140 |
-
"length": -1,
|
141 |
-
"id": null,
|
142 |
-
"_type": "Sequence"
|
143 |
-
}
|
144 |
-
},
|
145 |
-
"supervised_keys": null,
|
146 |
-
"builder_name": "compguesswhat",
|
147 |
-
"config_name": "compguesswhat-original",
|
148 |
-
"version": {
|
149 |
-
"version_str": "0.1.0",
|
150 |
-
"description": "First CompGuessWhat?! release",
|
151 |
-
"datasets_version_to_prepare": null,
|
152 |
-
"major": 0,
|
153 |
-
"minor": 1,
|
154 |
-
"patch": 0
|
155 |
-
},
|
156 |
-
"splits": {
|
157 |
-
"train": {
|
158 |
-
"name": "train",
|
159 |
-
"num_bytes": 125184123,
|
160 |
-
"num_examples": 46277,
|
161 |
-
"dataset_name": "compguesswhat"
|
162 |
-
},
|
163 |
-
"validation": {
|
164 |
-
"name": "validation",
|
165 |
-
"num_bytes": 25732027,
|
166 |
-
"num_examples": 9716,
|
167 |
-
"dataset_name": "compguesswhat"
|
168 |
-
},
|
169 |
-
"test": {
|
170 |
-
"name": "test",
|
171 |
-
"num_bytes": 25729944,
|
172 |
-
"num_examples": 9619,
|
173 |
-
"dataset_name": "compguesswhat"
|
174 |
-
}
|
175 |
-
},
|
176 |
-
"download_checksums": {
|
177 |
-
"https://www.dropbox.com/s/l0nc13udml6vs0w/compguesswhat-original.zip?dl=1": {
|
178 |
-
"num_bytes": 106008376,
|
179 |
-
"checksum": "a75567d024fd3992ee5d4d370db7b6d071384c89a0a76ec9c94bc0f4968a54fe"
|
180 |
-
}
|
181 |
-
},
|
182 |
-
"download_size": 106008376,
|
183 |
-
"dataset_size": 176646094,
|
184 |
-
"size_in_bytes": 282654470
|
185 |
-
},
|
186 |
-
"compguesswhat-zero_shot": {
|
187 |
-
"description": "\n CompGuessWhat?! is an instance of a multi-task framework for evaluating the quality of learned neural representations,\n in particular concerning attribute grounding. Use this dataset if you want to use the set of games whose reference\n scene is an image in VisualGenome. Visit the website for more details: https://compguesswhat.github.io\n ",
|
188 |
-
"citation": " @inproceedings{suglia2020compguesswhat,\n title={CompGuessWhat?!: a Multi-task Evaluation Framework for Grounded Language Learning},\n author={Suglia, Alessandro, Konstas, Ioannis, Vanzo, Andrea, Bastianelli, Emanuele, Desmond Elliott, Stella Frank and Oliver Lemon},\n booktitle={Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics},\n year={2020}\n }\n ",
|
189 |
-
"homepage": "https://compguesswhat.github.io/",
|
190 |
-
"license": "",
|
191 |
-
"features": {
|
192 |
-
"id": {
|
193 |
-
"dtype": "int32",
|
194 |
-
"id": null,
|
195 |
-
"_type": "Value"
|
196 |
-
},
|
197 |
-
"target_id": {
|
198 |
-
"dtype": "string",
|
199 |
-
"id": null,
|
200 |
-
"_type": "Value"
|
201 |
-
},
|
202 |
-
"status": {
|
203 |
-
"dtype": "string",
|
204 |
-
"id": null,
|
205 |
-
"_type": "Value"
|
206 |
-
},
|
207 |
-
"image": {
|
208 |
-
"id": {
|
209 |
-
"dtype": "int32",
|
210 |
-
"id": null,
|
211 |
-
"_type": "Value"
|
212 |
-
},
|
213 |
-
"file_name": {
|
214 |
-
"dtype": "string",
|
215 |
-
"id": null,
|
216 |
-
"_type": "Value"
|
217 |
-
},
|
218 |
-
"coco_url": {
|
219 |
-
"dtype": "string",
|
220 |
-
"id": null,
|
221 |
-
"_type": "Value"
|
222 |
-
},
|
223 |
-
"height": {
|
224 |
-
"dtype": "int32",
|
225 |
-
"id": null,
|
226 |
-
"_type": "Value"
|
227 |
-
},
|
228 |
-
"width": {
|
229 |
-
"dtype": "int32",
|
230 |
-
"id": null,
|
231 |
-
"_type": "Value"
|
232 |
-
},
|
233 |
-
"license": {
|
234 |
-
"dtype": "int32",
|
235 |
-
"id": null,
|
236 |
-
"_type": "Value"
|
237 |
-
},
|
238 |
-
"open_images_id": {
|
239 |
-
"dtype": "string",
|
240 |
-
"id": null,
|
241 |
-
"_type": "Value"
|
242 |
-
},
|
243 |
-
"date_captured": {
|
244 |
-
"dtype": "string",
|
245 |
-
"id": null,
|
246 |
-
"_type": "Value"
|
247 |
-
}
|
248 |
-
},
|
249 |
-
"objects": {
|
250 |
-
"feature": {
|
251 |
-
"id": {
|
252 |
-
"dtype": "string",
|
253 |
-
"id": null,
|
254 |
-
"_type": "Value"
|
255 |
-
},
|
256 |
-
"bbox": {
|
257 |
-
"feature": {
|
258 |
-
"dtype": "float32",
|
259 |
-
"id": null,
|
260 |
-
"_type": "Value"
|
261 |
-
},
|
262 |
-
"length": 4,
|
263 |
-
"id": null,
|
264 |
-
"_type": "Sequence"
|
265 |
-
},
|
266 |
-
"category": {
|
267 |
-
"dtype": "string",
|
268 |
-
"id": null,
|
269 |
-
"_type": "Value"
|
270 |
-
},
|
271 |
-
"area": {
|
272 |
-
"dtype": "float32",
|
273 |
-
"id": null,
|
274 |
-
"_type": "Value"
|
275 |
-
},
|
276 |
-
"category_id": {
|
277 |
-
"dtype": "int32",
|
278 |
-
"id": null,
|
279 |
-
"_type": "Value"
|
280 |
-
},
|
281 |
-
"IsOccluded": {
|
282 |
-
"dtype": "int32",
|
283 |
-
"id": null,
|
284 |
-
"_type": "Value"
|
285 |
-
},
|
286 |
-
"IsTruncated": {
|
287 |
-
"dtype": "int32",
|
288 |
-
"id": null,
|
289 |
-
"_type": "Value"
|
290 |
-
},
|
291 |
-
"segment": {
|
292 |
-
"feature": {
|
293 |
-
"MaskPath": {
|
294 |
-
"dtype": "string",
|
295 |
-
"id": null,
|
296 |
-
"_type": "Value"
|
297 |
-
},
|
298 |
-
"LabelName": {
|
299 |
-
"dtype": "string",
|
300 |
-
"id": null,
|
301 |
-
"_type": "Value"
|
302 |
-
},
|
303 |
-
"BoxID": {
|
304 |
-
"dtype": "string",
|
305 |
-
"id": null,
|
306 |
-
"_type": "Value"
|
307 |
-
},
|
308 |
-
"BoxXMin": {
|
309 |
-
"dtype": "string",
|
310 |
-
"id": null,
|
311 |
-
"_type": "Value"
|
312 |
-
},
|
313 |
-
"BoxXMax": {
|
314 |
-
"dtype": "string",
|
315 |
-
"id": null,
|
316 |
-
"_type": "Value"
|
317 |
-
},
|
318 |
-
"BoxYMin": {
|
319 |
-
"dtype": "string",
|
320 |
-
"id": null,
|
321 |
-
"_type": "Value"
|
322 |
-
},
|
323 |
-
"BoxYMax": {
|
324 |
-
"dtype": "string",
|
325 |
-
"id": null,
|
326 |
-
"_type": "Value"
|
327 |
-
},
|
328 |
-
"PredictedIoU": {
|
329 |
-
"dtype": "string",
|
330 |
-
"id": null,
|
331 |
-
"_type": "Value"
|
332 |
-
},
|
333 |
-
"Clicks": {
|
334 |
-
"dtype": "string",
|
335 |
-
"id": null,
|
336 |
-
"_type": "Value"
|
337 |
-
}
|
338 |
-
},
|
339 |
-
"length": -1,
|
340 |
-
"id": null,
|
341 |
-
"_type": "Sequence"
|
342 |
-
}
|
343 |
-
},
|
344 |
-
"length": -1,
|
345 |
-
"id": null,
|
346 |
-
"_type": "Sequence"
|
347 |
-
}
|
348 |
-
},
|
349 |
-
"supervised_keys": null,
|
350 |
-
"builder_name": "compguesswhat",
|
351 |
-
"config_name": "compguesswhat-zero_shot",
|
352 |
-
"version": {
|
353 |
-
"version_str": "0.1.0",
|
354 |
-
"description": "First CompGuessWhat?! release",
|
355 |
-
"datasets_version_to_prepare": null,
|
356 |
-
"major": 0,
|
357 |
-
"minor": 1,
|
358 |
-
"patch": 0
|
359 |
-
},
|
360 |
-
"splits": {
|
361 |
-
"nd_valid": {
|
362 |
-
"name": "nd_valid",
|
363 |
-
"num_bytes": 13697867,
|
364 |
-
"num_examples": 5343,
|
365 |
-
"dataset_name": "compguesswhat"
|
366 |
-
},
|
367 |
-
"nd_test": {
|
368 |
-
"name": "nd_test",
|
369 |
-
"num_bytes": 36729751,
|
370 |
-
"num_examples": 13836,
|
371 |
-
"dataset_name": "compguesswhat"
|
372 |
-
},
|
373 |
-
"od_valid": {
|
374 |
-
"name": "od_valid",
|
375 |
-
"num_bytes": 14235784,
|
376 |
-
"num_examples": 5372,
|
377 |
-
"dataset_name": "compguesswhat"
|
378 |
-
},
|
379 |
-
"od_test": {
|
380 |
-
"name": "od_test",
|
381 |
-
"num_bytes": 33384663,
|
382 |
-
"num_examples": 13300,
|
383 |
-
"dataset_name": "compguesswhat"
|
384 |
-
}
|
385 |
-
},
|
386 |
-
"download_checksums": {
|
387 |
-
"https://www.dropbox.com/s/gd46azul7o7iip4/compguesswhat-zero_shot.zip?dl=1": {
|
388 |
-
"num_bytes": 10076701,
|
389 |
-
"checksum": "38a2fb6e51d6f2f5e3eed9ff6cb6275b0eb29db18d95a562acdd0fc44801bac7"
|
390 |
-
}
|
391 |
-
},
|
392 |
-
"download_size": 10076701,
|
393 |
-
"dataset_size": 98048065,
|
394 |
-
"size_in_bytes": 108124766
|
395 |
-
}
|
396 |
-
}
|
|
|
1 |
+
{"compguesswhat-original": {"description": "\n CompGuessWhat?! is an instance of a multi-task framework for evaluating the quality of learned neural representations,\n in particular concerning attribute grounding. Use this dataset if you want to use the set of games whose reference\n scene is an image in VisualGenome. Visit the website for more details: https://compguesswhat.github.io\n ", "citation": " @inproceedings{suglia2020compguesswhat,\n title={CompGuessWhat?!: a Multi-task Evaluation Framework for Grounded Language Learning},\n author={Suglia, Alessandro, Konstas, Ioannis, Vanzo, Andrea, Bastianelli, Emanuele, Desmond Elliott, Stella Frank and Oliver Lemon},\n booktitle={Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics},\n year={2020}\n }\n ", "homepage": "https://compguesswhat.github.io/", "license": "", "features": {"id": {"dtype": "int32", "id": null, "_type": "Value"}, "target_id": {"dtype": "int32", "id": null, "_type": "Value"}, "timestamp": {"dtype": "string", "id": null, "_type": "Value"}, "status": {"dtype": "string", "id": null, "_type": "Value"}, "image": {"id": {"dtype": "int32", "id": null, "_type": "Value"}, "file_name": {"dtype": "string", "id": null, "_type": "Value"}, "flickr_url": {"dtype": "string", "id": null, "_type": "Value"}, "coco_url": {"dtype": "string", "id": null, "_type": "Value"}, "height": {"dtype": "int32", "id": null, "_type": "Value"}, "width": {"dtype": "int32", "id": null, "_type": "Value"}, "visual_genome": {"width": {"dtype": "int32", "id": null, "_type": "Value"}, "height": {"dtype": "int32", "id": null, "_type": "Value"}, "url": {"dtype": "string", "id": null, "_type": "Value"}, "coco_id": {"dtype": "int32", "id": null, "_type": "Value"}, "flickr_id": {"dtype": "string", "id": null, "_type": "Value"}, "image_id": {"dtype": "string", "id": null, "_type": "Value"}}}, "qas": {"feature": {"question": {"dtype": "string", "id": null, "_type": "Value"}, "answer": {"dtype": "string", "id": null, "_type": "Value"}, "id": {"dtype": "int32", "id": null, "_type": "Value"}}, "length": -1, "id": null, "_type": "Sequence"}, "objects": {"feature": {"id": {"dtype": "int32", "id": null, "_type": "Value"}, "bbox": {"feature": {"dtype": "float32", "id": null, "_type": "Value"}, "length": 4, "id": null, "_type": "Sequence"}, "category": {"dtype": "string", "id": null, "_type": "Value"}, "area": {"dtype": "float32", "id": null, "_type": "Value"}, "category_id": {"dtype": "int32", "id": null, "_type": "Value"}, "segment": {"feature": {"feature": {"dtype": "float32", "id": null, "_type": "Value"}, "length": -1, "id": null, "_type": "Sequence"}, "length": -1, "id": null, "_type": "Sequence"}}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "builder_name": "compguesswhat", "config_name": "compguesswhat-original", "version": {"version_str": "0.2.0", "description": "Second CompGuessWhat?! release", "major": 0, "minor": 2, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 123557020, "num_examples": 46341, "dataset_name": "compguesswhat"}, "validation": {"name": "validation", "num_bytes": 25441516, "num_examples": 9738, "dataset_name": "compguesswhat"}, "test": {"name": "test", "num_bytes": 25369315, "num_examples": 9621, "dataset_name": "compguesswhat"}}, "download_checksums": {"https://www.dropbox.com/s/l0nc13udml6vs0w/compguesswhat-original.zip?dl=1": {"num_bytes": 107201655, "checksum": "f965b469142cf65635b2b8b309ba2b28539fd7ad40039b11856cd662f2b000c1"}}, "download_size": 107201655, "post_processing_size": null, "dataset_size": 174367851, "size_in_bytes": 281569506}, "compguesswhat-zero_shot": {"description": "\n CompGuessWhat?! is an instance of a multi-task framework for evaluating the quality of learned neural representations,\n in particular concerning attribute grounding. Use this dataset if you want to use the set of games whose reference\n scene is an image in VisualGenome. Visit the website for more details: https://compguesswhat.github.io\n ", "citation": " @inproceedings{suglia2020compguesswhat,\n title={CompGuessWhat?!: a Multi-task Evaluation Framework for Grounded Language Learning},\n author={Suglia, Alessandro, Konstas, Ioannis, Vanzo, Andrea, Bastianelli, Emanuele, Desmond Elliott, Stella Frank and Oliver Lemon},\n booktitle={Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics},\n year={2020}\n }\n ", "homepage": "https://compguesswhat.github.io/", "license": "", "features": {"id": {"dtype": "int32", "id": null, "_type": "Value"}, "target_id": {"dtype": "string", "id": null, "_type": "Value"}, "status": {"dtype": "string", "id": null, "_type": "Value"}, "image": {"id": {"dtype": "int32", "id": null, "_type": "Value"}, "file_name": {"dtype": "string", "id": null, "_type": "Value"}, "coco_url": {"dtype": "string", "id": null, "_type": "Value"}, "height": {"dtype": "int32", "id": null, "_type": "Value"}, "width": {"dtype": "int32", "id": null, "_type": "Value"}, "license": {"dtype": "int32", "id": null, "_type": "Value"}, "open_images_id": {"dtype": "string", "id": null, "_type": "Value"}, "date_captured": {"dtype": "string", "id": null, "_type": "Value"}}, "objects": {"feature": {"id": {"dtype": "string", "id": null, "_type": "Value"}, "bbox": {"feature": {"dtype": "float32", "id": null, "_type": "Value"}, "length": 4, "id": null, "_type": "Sequence"}, "category": {"dtype": "string", "id": null, "_type": "Value"}, "area": {"dtype": "float32", "id": null, "_type": "Value"}, "category_id": {"dtype": "int32", "id": null, "_type": "Value"}, "IsOccluded": {"dtype": "int32", "id": null, "_type": "Value"}, "IsTruncated": {"dtype": "int32", "id": null, "_type": "Value"}, "segment": {"feature": {"MaskPath": {"dtype": "string", "id": null, "_type": "Value"}, "LabelName": {"dtype": "string", "id": null, "_type": "Value"}, "BoxID": {"dtype": "string", "id": null, "_type": "Value"}, "BoxXMin": {"dtype": "string", "id": null, "_type": "Value"}, "BoxXMax": {"dtype": "string", "id": null, "_type": "Value"}, "BoxYMin": {"dtype": "string", "id": null, "_type": "Value"}, "BoxYMax": {"dtype": "string", "id": null, "_type": "Value"}, "PredictedIoU": {"dtype": "string", "id": null, "_type": "Value"}, "Clicks": {"dtype": "string", "id": null, "_type": "Value"}}, "length": -1, "id": null, "_type": "Sequence"}}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "builder_name": "compguesswhat", "config_name": "compguesswhat-zero_shot", "version": {"version_str": "0.2.0", "description": "Second CompGuessWhat?! release", "major": 0, "minor": 2, "patch": 0}, "splits": {"nd_valid": {"name": "nd_valid", "num_bytes": 13510725, "num_examples": 5343, "dataset_name": "compguesswhat"}, "nd_test": {"name": "nd_test", "num_bytes": 36228293, "num_examples": 13836, "dataset_name": "compguesswhat"}, "od_valid": {"name": "od_valid", "num_bytes": 14052108, "num_examples": 5372, "dataset_name": "compguesswhat"}, "od_test": {"name": "od_test", "num_bytes": 32951141, "num_examples": 13300, "dataset_name": "compguesswhat"}}, "download_checksums": {"https://www.dropbox.com/s/gd46azul7o7iip4/compguesswhat-zero_shot.zip?dl=1": {"num_bytes": 4845966, "checksum": "ebf444e14408dbff2d910ba9ec049cd42882f2ce52d465d0f78203ee454aa33e"}}, "download_size": 4845966, "post_processing_size": null, "dataset_size": 96742267, "size_in_bytes": 101588233}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dummy/compguesswhat-original/0.2.0/dummy_data.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e7a2cc899031458b014970e31209e4bf6caf07558873d5bfb5d9736613448ba3
|
3 |
+
size 26133
|
dummy/compguesswhat-zero_shot/0.2.0/dummy_data.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:559083545ed28743c9d104ae8b2b64cf015618358d9655a29b8337837d8a0db9
|
3 |
+
size 7306
|