lbourdois commited on
Commit
fbd11f0
·
verified ·
1 Parent(s): 85e2b52

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -2
README.md CHANGED
@@ -3,10 +3,10 @@ dataset_info:
3
  features:
4
  - name: image
5
  dtype: image
6
- - name: question
7
- dtype: string
8
  - name: answer
9
  dtype: string
 
 
10
  - name: dataset
11
  dtype: string
12
  splits:
@@ -21,3 +21,25 @@ configs:
21
  - split: train
22
  path: data/train-*
23
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  features:
4
  - name: image
5
  dtype: image
 
 
6
  - name: answer
7
  dtype: string
8
+ - name: question
9
+ dtype: string
10
  - name: dataset
11
  dtype: string
12
  splits:
 
21
  - split: train
22
  path: data/train-*
23
  ---
24
+
25
+
26
+ ## Description
27
+
28
+ This dataset is a processed version of the VSR dataset by Liu, Emerson and Collier, particularly for a visual question answering task where answer is a caption.
29
+ We converted the images to PIL format (`image` column of the dataset); created 48 different questions in French (`question` column); and finally translated the original captions from English to French and used them as answers (`answer` column).
30
+
31
+ ## Citation
32
+
33
+ #### VSR
34
+
35
+ ```
36
+ @misc{liu2023visualspatialreasoning,
37
+ title={Visual Spatial Reasoning},
38
+ author={Fangyu Liu and Guy Emerson and Nigel Collier},
39
+ year={2023},
40
+ eprint={2205.00363},
41
+ archivePrefix={arXiv},
42
+ primaryClass={cs.CL},
43
+ url={https://arxiv.org/abs/2205.00363},
44
+ }
45
+ ```