Commit
·
aa44b66
1
Parent(s):
a291c13
Update app.py
Browse files
app.py
CHANGED
@@ -11,10 +11,7 @@ title = "Interactive demo: Helsinki-NLP English to Spanish Translation"
|
|
11 |
|
12 |
iface = gr.Interface(
|
13 |
fn=predict,
|
14 |
-
inputs=
|
15 |
outputs='text',
|
16 |
title=title,
|
17 |
-
examples=[["Hello! My name is Omar"]
|
18 |
-
)
|
19 |
-
|
20 |
-
iface.launch(debug=True)
|
|
|
11 |
|
12 |
iface = gr.Interface(
|
13 |
fn=predict,
|
14 |
+
inputs='text',
|
15 |
outputs='text',
|
16 |
title=title,
|
17 |
+
examples=[["Hello! My name is Omar"]]
|
|
|
|
|
|