unilm commited on
Commit
3e2a40e
1 Parent(s): 324264b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -8
README.md CHANGED
@@ -1,13 +1,13 @@
1
  # XLM-Align
2
 
3
- **Improving Pretrained Cross-Lingual Language Models via Self-Labeled Word Alignment** (ACL-2021, [paper](https://arxiv.org/pdf/2106.06381.pdf), [github](https://github.com/CZWin32768/XLM-Align))
4
 
5
- XLM-Align is a pretrained cross-lingual language model that supports 94 languages. See details in our [paper](https://arxiv.org/pdf/2106.06381.pdf).
6
 
7
  ## Example
8
 
9
  ```
10
- model = = AutoModel.from_pretrained("CZWin32768/xlm-align")
11
  ```
12
 
13
  ## Evaluation Results
@@ -35,10 +35,15 @@ Contact: chizewen\@outlook.com
35
  BibTeX:
36
 
37
  ```
38
- @article{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
- journal={arXiv preprint arXiv:2106.06381},
42
- year={2021}
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
  ```