File size: 378 Bytes
47b898d
 
816e7e7
7c259c2
47b898d
 
6487afb
cd014e6
11a0bcf
709f468
790a5d1
cd014e6
6487afb
cd014e6
709f468
 
f00e453
47b898d
709f468
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import gradio as gr

from transformers_js_py import pipeline

pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-tc-big-en-pt")

def predict(text):
  return pipe(text)[0]["translation_text"]
  
titulo = "tradutor Inglês para Brazileirez"

igr = gr.Interface(
  fn=predict, 
  inputs=[gr.Textbox(label="text", lines=3)],
  outputs='text',
  title=titulo,
)

igr.launch()