Spaces:
Running
Running
osanseviero
commited on
Commit
•
be782cb
1
Parent(s):
d66054e
Create new file
Browse files
app.py
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
from transformers import pipeline
|
4 |
+
|
5 |
+
pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-en-es")
|
6 |
+
|
7 |
+
def predict(text):
|
8 |
+
return pipe(text)[0]["translation_text"]
|
9 |
+
|
10 |
+
title = "Interactive demo: Helsinki-NLP English to Spanish Translation"
|
11 |
+
|
12 |
+
iface = gr.Interface(
|
13 |
+
fn=predict,
|
14 |
+
inputs=[gr.inputs.Textbox(label="text", lines=3)],
|
15 |
+
outputs='text',
|
16 |
+
title=title,
|
17 |
+
examples=[["Hello! My name is Omar"], ["I like this workshop"]]
|
18 |
+
)
|
19 |
+
|
20 |
+
iface.launch()
|