Update README.md
Browse files
README.md
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
# XLM-Align
|
2 |
|
3 |
-
**
|
4 |
|
5 |
-
XLM-Align is a pretrained cross-lingual language model that supports 94 languages. See details in our [paper](https://
|
6 |
|
7 |
## Example
|
8 |
|
9 |
```
|
10 |
-
model =
|
11 |
```
|
12 |
|
13 |
## Evaluation Results
|
@@ -35,10 +35,15 @@ Contact: chizewen\@outlook.com
|
|
35 |
BibTeX:
|
36 |
|
37 |
```
|
38 |
-
@
|
39 |
-
title=
|
40 |
author={Zewen Chi and Li Dong and Bo Zheng and Shaohan Huang and Xian-Ling Mao and Heyan Huang and Furu Wei},
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
44 |
```
|
|
|
1 |
# XLM-Align
|
2 |
|
3 |
+
**XLM-Align** (ACL 2021, [paper](https://aclanthology.org/2021.acl-long.265/), [repo](https://github.com/CZWin32768/XLM-Align), [model](https://huggingface.co/microsoft/xlm-align-base)) Improving Pretrained Cross-Lingual Language Models via Self-Labeled Word Alignment
|
4 |
|
5 |
+
XLM-Align is a pretrained cross-lingual language model that supports 94 languages. See details in our [paper](https://aclanthology.org/2021.acl-long.265/).
|
6 |
|
7 |
## Example
|
8 |
|
9 |
```
|
10 |
+
model = AutoModel.from_pretrained("microsoft/xlm-align-base")
|
11 |
```
|
12 |
|
13 |
## Evaluation Results
|
|
|
35 |
BibTeX:
|
36 |
|
37 |
```
|
38 |
+
@inproceedings{xlmalign,
|
39 |
+
title = "Improving Pretrained Cross-Lingual Language Models via Self-Labeled Word Alignment",
|
40 |
author={Zewen Chi and Li Dong and Bo Zheng and Shaohan Huang and Xian-Ling Mao and Heyan Huang and Furu Wei},
|
41 |
+
booktitle = "Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long Papers)",
|
42 |
+
month = aug,
|
43 |
+
year = "2021",
|
44 |
+
address = "Online",
|
45 |
+
publisher = "Association for Computational Linguistics",
|
46 |
+
url = "https://aclanthology.org/2021.acl-long.265",
|
47 |
+
doi = "10.18653/v1/2021.acl-long.265",
|
48 |
+
pages = "3418--3430",}
|
49 |
```
|