Spaces:
Build error
Build error
Abubakar Abid
commited on
Commit
·
1becd76
1
Parent(s):
0291605
omar's english to spanish app
Browse files- app.py +20 -0
- requirements.txt +3 -0
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(debug=True)
|
requirements.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
sentencepiece
|
| 2 |
+
transformers
|
| 3 |
+
torch
|