Jingya HF staff commited on
Commit
32a8ca4
1 Parent(s): e775f50

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -0
README.md CHANGED
@@ -1,3 +1,62 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+ # M2M100 418M
5
+
6
+ M2M100 is a multilingual encoder-decoder (seq-to-seq) model trained for Many-to-Many multilingual translation.
7
+ It was introduced in this [paper](https://arxiv.org/abs/2010.11125) and first released in [this](https://github.com/pytorch/fairseq/tree/master/examples/m2m_100) repository.
8
+
9
+ The model that can directly translate between the 9,900 directions of 100 languages.
10
+ To translate into a target language, the target language id is forced as the first generated token.
11
+ To force the target language id as the first generated token, pass the `forced_bos_token_id` parameter to the `generate` method.
12
+
13
+ *Note: `M2M100Tokenizer` depends on `sentencepiece`, so make sure to install it before running the example.*
14
+
15
+ To install `sentencepiece` run `pip install sentencepiece`
16
+
17
+
18
+ ```python
19
+ from transformers import AutoConfig, AutoTokenizer
20
+ from optimum.onnxruntime import ORTModelForSeq2SeqLM
21
+ from optimum.pipelines import pipeline
22
+
23
+ hi_text = "जीवन एक चॉकलेट बॉक्स की तरह है।"
24
+ chinese_text = "生活就像一盒巧克力。"
25
+
26
+ model = ORTModelForSeq2SeqLM.from_pretrained("optimum/m2m100_418M")
27
+ tokenizer = AutoTokenizer.from_pretrained("optimum/m2m100_418M")
28
+
29
+ # translate Hindi to French
30
+ tokenizer.src_lang = "hi"
31
+ encoded_hi = tokenizer(hi_text, return_tensors="pt")
32
+ generated_tokens = model.generate(**encoded_hi, forced_bos_token_id=tokenizer.get_lang_id("fr"))
33
+ tokenizer.batch_decode(generated_tokens, skip_special_tokens=True)
34
+ # => "La vie est comme une boîte de chocolat."
35
+
36
+ # translate Chinese to English
37
+ tokenizer.src_lang = "zh"
38
+ encoded_zh = tokenizer(chinese_text, return_tensors="pt")
39
+ generated_tokens = model.generate(**encoded_zh, forced_bos_token_id=tokenizer.get_lang_id("en"))
40
+ tokenizer.batch_decode(generated_tokens, skip_special_tokens=True)
41
+ # => "Life is like a box of chocolate."
42
+ ```
43
+
44
+
45
+ See the [model hub](https://huggingface.co/models?filter=m2m_100) to look for more fine-tuned versions.
46
+
47
+
48
+ ## Languages covered
49
+ Afrikaans (af), Amharic (am), Arabic (ar), Asturian (ast), Azerbaijani (az), Bashkir (ba), Belarusian (be), Bulgarian (bg), Bengali (bn), Breton (br), Bosnian (bs), Catalan; Valencian (ca), Cebuano (ceb), Czech (cs), Welsh (cy), Danish (da), German (de), Greeek (el), English (en), Spanish (es), Estonian (et), Persian (fa), Fulah (ff), Finnish (fi), French (fr), Western Frisian (fy), Irish (ga), Gaelic; Scottish Gaelic (gd), Galician (gl), Gujarati (gu), Hausa (ha), Hebrew (he), Hindi (hi), Croatian (hr), Haitian; Haitian Creole (ht), Hungarian (hu), Armenian (hy), Indonesian (id), Igbo (ig), Iloko (ilo), Icelandic (is), Italian (it), Japanese (ja), Javanese (jv), Georgian (ka), Kazakh (kk), Central Khmer (km), Kannada (kn), Korean (ko), Luxembourgish; Letzeburgesch (lb), Ganda (lg), Lingala (ln), Lao (lo), Lithuanian (lt), Latvian (lv), Malagasy (mg), Macedonian (mk), Malayalam (ml), Mongolian (mn), Marathi (mr), Malay (ms), Burmese (my), Nepali (ne), Dutch; Flemish (nl), Norwegian (no), Northern Sotho (ns), Occitan (post 1500) (oc), Oriya (or), Panjabi; Punjabi (pa), Polish (pl), Pushto; Pashto (ps), Portuguese (pt), Romanian; Moldavian; Moldovan (ro), Russian (ru), Sindhi (sd), Sinhala; Sinhalese (si), Slovak (sk), Slovenian (sl), Somali (so), Albanian (sq), Serbian (sr), Swati (ss), Sundanese (su), Swedish (sv), Swahili (sw), Tamil (ta), Thai (th), Tagalog (tl), Tswana (tn), Turkish (tr), Ukrainian (uk), Urdu (ur), Uzbek (uz), Vietnamese (vi), Wolof (wo), Xhosa (xh), Yiddish (yi), Yoruba (yo), Chinese (zh), Zulu (zu)
50
+
51
+
52
+ ## BibTeX entry and citation info
53
+ ```
54
+ @misc{fan2020englishcentric,
55
+ title={Beyond English-Centric Multilingual Machine Translation},
56
+ author={Angela Fan and Shruti Bhosale and Holger Schwenk and Zhiyi Ma and Ahmed El-Kishky and Siddharth Goyal and Mandeep Baines and Onur Celebi and Guillaume Wenzek and Vishrav Chaudhary and Naman Goyal and Tom Birch and Vitaliy Liptchinsky and Sergey Edunov and Edouard Grave and Michael Auli and Armand Joulin},
57
+ year={2020},
58
+ eprint={2010.11125},
59
+ archivePrefix={arXiv},
60
+ primaryClass={cs.CL}
61
+ }
62
+ ```