File size: 178 Bytes
3715bae
3cd63fd
3715bae
 
 
3cd63fd
3715bae
1
2
3
4
5
6
7
from transformers import pipeline
import gradio as gr

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

iface = gr.Interface.from_pipeline(pipe)
iface.launch()