translation / app.py
Naresh1993's picture
Update app.py
2bb427a verified
raw
history blame contribute delete
No virus
176 Bytes
from transformers import pipeline
import gradio as gr
pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-en-es")
demo = gr.Interface.from_pipeline(pipe)
demo.launch()