zaanind commited on
Commit
0db789a
1 Parent(s): 8767ef3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -14,5 +14,10 @@ def translate(text):
14
  translation = tokenizer.decode(translated_tokens[0], skip_special_tokens=True)
15
  return translation
16
 
17
- iface = gr.Interface(fn=translate, inputs="text", outputs="text")
 
 
 
 
 
18
  iface.launch()
 
14
  translation = tokenizer.decode(translated_tokens[0], skip_special_tokens=True)
15
  return translation
16
 
17
+ iface = gr.Interface(fn=translate,
18
+ inputs="text",
19
+ outputs="text",
20
+ title="EnSi NMT",
21
+ description="This is a demo and rest for ensi nmt by @zaanind."
22
+ )
23
  iface.launch()