mbarnig commited on
Commit
52bba6a
1 Parent(s): 95a5ee1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -2,9 +2,10 @@ import gradio as gr
2
  import numpy as np
3
  from huggingface_hub import hf_hub_download
4
 
5
- REPO_ID_NLLB =
6
- REPO_ID_MARIANNMT =
7
- REPO_ID_T5MT5 =
 
8
 
9
  my_title = "🇫🇷 Mir iwwersetzen vun an op Lëtzebuergesch ! 🇬🇧"
10
  my_description = "English-Luxembourgish machine translation (MT) demo based on 3 transforemr models: NLLB, MarianNMT & T5/mt5."
 
2
  import numpy as np
3
  from huggingface_hub import hf_hub_download
4
 
5
+ REPO_ID_NLLB = "facebook/nllb-200-distilled-600M"
6
+ REPO_ID_MARIANNMT_en = "mbarnig/MarianNMT-tatoeba-en-lb"
7
+ REPO_ID_MARIANNMT_lb = "mbarnig/MarianNMT-tatoeba-lb-en"
8
+ REPO_ID_T5MT5 = "mbarnig/T5-mt5-tatoeba-en-lb"
9
 
10
  my_title = "🇫🇷 Mir iwwersetzen vun an op Lëtzebuergesch ! 🇬🇧"
11
  my_description = "English-Luxembourgish machine translation (MT) demo based on 3 transforemr models: NLLB, MarianNMT & T5/mt5."