EddyGiusepe commited on
Commit
d54266e
1 Parent(s): 192f9a3

Create new file

Browse files
Files changed (1) hide show
  1. app.py +20 -0
app.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import pipeline
3
+
4
+
5
+ pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-en-es") # Tradução de Inglês para Espanhol
6
+
7
+ def predict(text):
8
+ return pipe(text)[0]["translation_text"]
9
+
10
+ title = "Demonstração interativa: Tradução Helsinki-NLP Inglês para Espanhol"
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 Eddy and I'm from Perú."], ["I like this workshop"]]
18
+ )
19
+
20
+ iface.launch(debug=True)