lbourdois commited on
Commit
2f3b7be
·
verified ·
1 Parent(s): 758d554

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -30
README.md CHANGED
@@ -1,33 +1,47 @@
1
  ---
2
- 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:
13
- - name: train
14
- num_bytes: 42233743553.0
15
- num_examples: 27000
16
- - name: test_small
17
- num_bytes: 471767896.0
18
- num_examples: 300
19
- - name: test_large
20
- num_bytes: 2363992800.0
21
- num_examples: 1500
22
- download_size: 44133916897
23
- dataset_size: 45069504249.0
24
  configs:
25
- - config_name: default
26
- data_files:
27
- - split: train
28
- path: data/train-*
29
- - split: test_small
30
- path: data/test_small-*
31
- - split: test_large
32
- path: data/test_large-*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  configs:
3
+ - config_name: task1
4
+ data_files:
5
+ - split: train
6
+ path: data/train-*
7
+ - split: test_small
8
+ path: data/test_small-*
9
+ - split: test_large
10
+ path: data/test_large-*
11
+ - config_name: task2
12
+ data_files:
13
+ - split: train
14
+ path: task2/train-*
15
+ - split: test_small
16
+ path: task2/test_small-*
17
+ - split: test_large
18
+ path: task2/test_large-*
19
+ language:
20
+ - fr
21
+ task_categories:
22
+ - visual-question-answering
23
+ size_categories:
24
+ - 100K<n<1M
25
  ---
26
+
27
+
28
+ ## Description
29
+
30
+ This dataset is a processed version of [worldcuisines/vqa](https://huggingface.co/datasets/worldcuisines/vqa) to make it easier to use.
31
+ Specifically, the original dataset has been processed to provide the image directly as a PIL rather than an URL path in an `image` column.
32
+
33
+ Note that this dataset contains only the French part of the original dataset for `task1` and `task2`.
34
+ For further details, please consult the [worldcuisines/vqa](https://huggingface.co/datasets/worldcuisines/vqa) dataset card.
35
+
36
+ Finally, the `dataset` column is for internal use by the person who processed the dataset, and can therefore be ignored by the user.
37
+
38
+
39
+ ## Citation
40
+ ```
41
+ @article{winata2024worldcuisines,
42
+ title={WorldCuisines: A Massive-Scale Benchmark for Multilingual and Multicultural Visual Question Answering on Global Cuisines},
43
+ author={Winata, Genta Indra and Hudi, Frederikus and Irawan, Patrick Amadeus and Anugraha, David and Putri, Rifki Afina and Wang, Yutong and Nohejl, Adam and Prathama, Ubaidillah Ariq and Ousidhoum, Nedjma and Amriani, Afifa and others},
44
+ journal={arXiv preprint arXiv:2410.12705},
45
+ year={2024}
46
+ }
47
+ ```