JRQi commited on
Commit
6ba4817
·
verified ·
1 Parent(s): 486ef66

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +96 -0
README.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: en
4
+ data_files:
5
+ - split: test
6
+ path: en.jsonl
7
+ - config_name: fr
8
+ data_files:
9
+ - split: test
10
+ path: fr.jsonl
11
+ - config_name: nl
12
+ data_files:
13
+ - split: test
14
+ path: nl.jsonl
15
+ - config_name: es
16
+ data_files:
17
+ - split: test
18
+ path: es.jsonl
19
+ - config_name: ru
20
+ data_files:
21
+ - split: test
22
+ path: ru.jsonl
23
+ - config_name: ja
24
+ data_files:
25
+ - split: test
26
+ path: ja.jsonl
27
+ - config_name: zh
28
+ data_files:
29
+ - split: test
30
+ path: zh.jsonl
31
+ - config_name: ko
32
+ data_files:
33
+ - split: test
34
+ path: ko.jsonl
35
+ - config_name: vi
36
+ data_files:
37
+ - split: test
38
+ path: vi.jsonl
39
+ - config_name: el
40
+ data_files:
41
+ - split: test
42
+ path: el.jsonl
43
+ - config_name: hu
44
+ data_files:
45
+ - split: test
46
+ path: hu.jsonl
47
+ - config_name: he
48
+ data_files:
49
+ - split: test
50
+ path: he.jsonl
51
+ - config_name: tr
52
+ data_files:
53
+ - split: test
54
+ path: tr.jsonl
55
+ - config_name: ca
56
+ data_files:
57
+ - split: test
58
+ path: ca.jsonl
59
+ - config_name: ar
60
+ data_files:
61
+ - split: test
62
+ path: ar.jsonl
63
+ - config_name: uk
64
+ data_files:
65
+ - split: test
66
+ path: uk.jsonl
67
+ - config_name: fa
68
+ data_files:
69
+ - split: test
70
+ path: fa.jsonl
71
+ ---
72
+
73
+ # Dataset Description
74
+ This is the BMLAMA17 dataset of our EMNLP 2023 paper [Cross-Lingual Consistency of Factual Knowledge in Multilingual Language Models](https://aclanthology.org/2023.emnlp-main.658/).
75
+ If you are interested in more language coverage, see our [BMLAMA53](https://huggingface.co/datasets/JRQi/BMLAMA53).
76
+
77
+ If you find the dataset useful, please cite it as follows:
78
+ ```bibtex
79
+ @inproceedings{qi-etal-2023-cross,
80
+ title = "Cross-Lingual Consistency of Factual Knowledge in Multilingual Language Models",
81
+ author = "Qi, Jirui and
82
+ Fern{\'a}ndez, Raquel and
83
+ Bisazza, Arianna",
84
+ editor = "Bouamor, Houda and
85
+ Pino, Juan and
86
+ Bali, Kalika",
87
+ booktitle = "Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing",
88
+ month = dec,
89
+ year = "2023",
90
+ address = "Singapore",
91
+ publisher = "Association for Computational Linguistics",
92
+ url = "https://aclanthology.org/2023.emnlp-main.658/",
93
+ doi = "10.18653/v1/2023.emnlp-main.658",
94
+ pages = "10650--10666",
95
+ abstract = "Multilingual large-scale Pretrained Language Models (PLMs) have been shown to store considerable amounts of factual knowledge, but large variations are observed across languages. With the ultimate goal of ensuring that users with different language backgrounds obtain consistent feedback from the same model, we study the cross-lingual consistency (CLC) of factual knowledge in various multilingual PLMs. To this end, we propose a Ranking-based Consistency (RankC) metric to evaluate knowledge consistency across languages independently from accuracy. Using this metric, we conduct an in-depth analysis of the determining factors for CLC, both at model level and at language-pair level. Among other results, we find that increasing model size leads to higher factual probing accuracy in most languages, but does not improve cross-lingual consistency. Finally, we conduct a case study on CLC when new factual associations are inserted in the PLMs via model editing. Results on a small sample of facts inserted in English reveal a clear pattern whereby the new piece of knowledge transfers only to languages with which English has a high RankC score. All code and data are released at https://github.com/Betswish/Cross-Lingual-Consistency."
96
+ }