UBCNLP commited on
Commit
2598d59
·
verified ·
1 Parent(s): 889511f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -2
README.md CHANGED
@@ -10,8 +10,63 @@ dataset_info:
10
  dtype: string
11
  splits:
12
  - name: test
13
- num_bytes: 1563779706.0
14
  num_examples: 3000
15
  download_size: 2126495223
16
- dataset_size: 1563779706.0
 
 
 
 
 
 
 
 
 
17
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  dtype: string
11
  splits:
12
  - name: test
13
+ num_bytes: 1563779706
14
  num_examples: 3000
15
  download_size: 2126495223
16
+ dataset_size: 1563779706
17
+ task_categories:
18
+ - image-classification
19
+ tags:
20
+ - cultural
21
+ - visual
22
+ - retrieval
23
+ - universals
24
+ size_categories:
25
+ - 1K<n<10K
26
  ---
27
+
28
+ ### GlobalRG - Retrieval Across Universals Task
29
+ Despite recent advancements in vision-language models, their performance remains suboptimal on images from non-western cultures due to underrepresentation in training datasets. Various benchmarks have been proposed to test models' cultural inclusivity, but they have limited coverage of cultures and do not adequately assess cultural diversity across universal as well as culture-specific local concepts. We introduce the GlobalRG-Retrieval benchmark, which aims at retrieving culturally diverse images for universal concepts from 50 countries.
30
+
31
+ <!-- > **Note:** The answers for the GlobalRG-Grounding benchmark are not publicly available. We are working on creating a competition where participants can upload their predictions and evaluate their models. Stay tuned for more updates!
32
+ If you need to urgently need to evaluate, please contact [email protected] -->
33
+
34
+ ### Loading the dataset
35
+ To load and use the GlobalRG-Grounding benchmark, use the following commands:
36
+ ```
37
+ from datasets import load_dataset
38
+ globalrg_retrieval_dataset = load_dataset('UBCNLP/GlobalRG-Retrieval')
39
+ ```
40
+ Once the dataset is loaded, each instance contains the following fields:
41
+
42
+ - `u_id`: A unique identifier for each image-region-concept tuple
43
+ - `image`: The image data in binary format
44
+ - `region`: The cultural region pertaining to the image
45
+ - `universal`: The universal concept pertaining the image.
46
+
47
+ ### Usage and License
48
+ GlobalRG is a test-only benchmark and can be used to evaluate models. The images are scraped from the internet and are not owned by the authors. All annotations are released under the CC BY-SA 4.0 license.
49
+
50
+ ### Citation Information
51
+ If you are using this dataset, please cite
52
+ ```
53
+ @inproceedings{bhatia-etal-2024-local,
54
+ title = "From Local Concepts to Universals: Evaluating the Multicultural Understanding of Vision-Language Models",
55
+ author = "Bhatia, Mehar and
56
+ Ravi, Sahithya and
57
+ Chinchure, Aditya and
58
+ Hwang, EunJeong and
59
+ Shwartz, Vered",
60
+ editor = "Al-Onaizan, Yaser and
61
+ Bansal, Mohit and
62
+ Chen, Yun-Nung",
63
+ booktitle = "Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing",
64
+ month = nov,
65
+ year = "2024",
66
+ address = "Miami, Florida, USA",
67
+ publisher = "Association for Computational Linguistics",
68
+ url = "https://aclanthology.org/2024.emnlp-main.385",
69
+ doi = "10.18653/v1/2024.emnlp-main.385",
70
+ pages = "6763--6782"
71
+ }
72
+ ```