Lianglan commited on
Commit
bbd346a
1 Parent(s): a1e0123

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -6,7 +6,8 @@ from langs import LANGS
6
  #from langs_all import LANGS ##for 200+ languages
7
 
8
  TASK = "translation"
9
- CKPT = "facebook/nllb-200-distilled-600M"
 
10
 
11
  model = AutoModelForSeq2SeqLM.from_pretrained(CKPT)
12
  tokenizer = AutoTokenizer.from_pretrained(CKPT)
 
6
  #from langs_all import LANGS ##for 200+ languages
7
 
8
  TASK = "translation"
9
+ CKPT = "facebook/nllb-200-distilled-1.3B"
10
+ #CKPT = "facebook/nllb-200-distilled-600M"
11
 
12
  model = AutoModelForSeq2SeqLM.from_pretrained(CKPT)
13
  tokenizer = AutoTokenizer.from_pretrained(CKPT)