File size: 547 Bytes
d54266e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import gradio as gr
from transformers import pipeline


pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-en-es") # Tradução de Inglês para Espanhol

def predict(text):
  return pipe(text)[0]["translation_text"]
  
title = "Demonstração interativa: Tradução Helsinki-NLP Inglês para Espanhol"

iface = gr.Interface(
  fn=predict, 
  inputs=[gr.inputs.Textbox(label="text", lines=3)],
  outputs='text',
  title=title,
  examples=[["Hello! My name is Eddy and I'm from Perú."], ["I like this workshop"]]
)

iface.launch(debug=True)