Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ title ="Interactive demo: Helsinki-NLP English to Spanish Translator"
|
|
11 |
iface = gr.Interface(
|
12 |
fn=predict,
|
13 |
inputs=gr.Textbox(lines = 3, placeholder = "text"),
|
14 |
-
outputs='text',
|
15 |
-
|
16 |
examples = [["Hello! My name is Alex"], ["I like this class"]] )
|
17 |
iface.launch(debug = True)
|
|
|
11 |
iface = gr.Interface(
|
12 |
fn=predict,
|
13 |
inputs=gr.Textbox(lines = 3, placeholder = "text"),
|
14 |
+
outputs='text',
|
15 |
+
title=title,
|
16 |
examples = [["Hello! My name is Alex"], ["I like this class"]] )
|
17 |
iface.launch(debug = True)
|