code_5.3 / app.py
ttphong68's picture
Upload 2 files
746fedb
raw
history blame contribute delete
307 Bytes
from transformers import pipeline
import gradio as grad
mdl_name = "Helsinki-NLP/opus-mt-en-de"
opus_translator = pipeline("translation", model=mdl_name)
def translate(text):
response = opus_translator(text)
return response
grad.Interface(translate, inputs=["text",], outputs="text").launch()