seyoungsong commited on
Commit
49b4252
1 Parent(s): 371aca1

add link to Demo

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -131,10 +131,12 @@ language:
131
 
132
  # Flores101: Large-Scale Multilingual Machine Translation
133
 
134
- `flores101_mm100_175M` is a multilingual encoder-decoder (seq-to-seq) model trained for Many-to-Many multilingual translation. It was introduced in this [paper](https://aclanthology.org/2022.tacl-1.30) and released in [this](https://github.com/facebookresearch/fairseq/tree/main/examples/flores101) repository.
135
 
136
  The model architecture and config are the same as [M2M100](https://huggingface.co/facebook/m2m100_418M) implementation, but the **tokenizer should be modified** to adjust language codes.
137
 
 
 
138
  ```python
139
  from transformers import M2M100ForConditionalGeneration, M2M100Tokenizer
140
 
 
131
 
132
  # Flores101: Large-Scale Multilingual Machine Translation
133
 
134
+ `flores101_mm100_175M` is a multilingual encoder-decoder (seq-to-seq) model trained for Many-to-Many multilingual translation. It was released in [this](https://github.com/facebookresearch/fairseq/tree/main/examples/flores101) repository.
135
 
136
  The model architecture and config are the same as [M2M100](https://huggingface.co/facebook/m2m100_418M) implementation, but the **tokenizer should be modified** to adjust language codes.
137
 
138
+ **Demo**: https://huggingface.co/spaces/seyoungsong/flores101_mm100_175M
139
+
140
  ```python
141
  from transformers import M2M100ForConditionalGeneration, M2M100Tokenizer
142