atomiclabs commited on
Commit
150c9dc
·
1 Parent(s): a300722

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ iface = gr.Interface.load("huggingface/Helsinki-NLP/opus-mt-en-es",
4
+ examples=[["Hello! My name is Omar"]]
5
+ )
6
+
7
+ iface.launch()