Update README.md
Browse files
README.md
CHANGED
@@ -2,5 +2,53 @@
|
|
2 |
language:
|
3 |
- fr
|
4 |
- en
|
|
|
|
|
|
|
|
|
|
|
5 |
pipeline_tag: translation
|
6 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
language:
|
3 |
- fr
|
4 |
- en
|
5 |
+
metrics:
|
6 |
+
- bleu
|
7 |
+
results:
|
8 |
+
- name: bleu
|
9 |
+
- value: 49
|
10 |
pipeline_tag: translation
|
11 |
+
---
|
12 |
+
|
13 |
+
# Model Details
|
14 |
+
|
15 |
+
French-to-English Machine Translation model trained by Yasmin Moslem.
|
16 |
+
This is a Transformer-based model originally trained with OpenNMT-py and then converted to the CTranslate2 format for efficient inference.
|
17 |
+
|
18 |
+
## Tools
|
19 |
+
|
20 |
+
- OpenNMT-py
|
21 |
+
- CTranslate2
|
22 |
+
|
23 |
+
## Data
|
24 |
+
|
25 |
+
This model is trained on the French-to-English portion of the [UN Corpus](https://conferences.unite.un.org/UNCorpus/),
|
26 |
+
consisting of approx. 20 million segments.
|
27 |
+
|
28 |
+
## Demo
|
29 |
+
|
30 |
+
A demo of this model is available at: https://www.machinetranslation.io/
|
31 |
+
|
32 |
+
The demo also illustrates word-level auto-suggestions with teacher forcing.
|
33 |
+
|
34 |
+
## Inference
|
35 |
+
|
36 |
+
If you want to run this model locally, you can use the [CTranslate2](https://github.com/OpenNMT/CTranslate2) library.
|
37 |
+
|
38 |
+
## Citation
|
39 |
+
|
40 |
+
```
|
41 |
+
@inproceedings{moslem-etal-2022-translation,
|
42 |
+
title = "Translation Word-Level Auto-Completion: What Can We Achieve Out of the Box?",
|
43 |
+
author = "Moslem, Yasmin and
|
44 |
+
Haque, Rejwanul and
|
45 |
+
Way, Andy",
|
46 |
+
booktitle = "Proceedings of the Seventh Conference on Machine Translation (WMT)",
|
47 |
+
month = dec,
|
48 |
+
year = "2022",
|
49 |
+
address = "Abu Dhabi, United Arab Emirates",
|
50 |
+
publisher = "Association for Computational Linguistics",
|
51 |
+
url = "https://aclanthology.org/2022.wmt-1.119",
|
52 |
+
pages = "1176--1181",
|
53 |
+
}
|
54 |
+
```
|