osanseviero's picture
osanseviero HF staff
Create app.py
d8d0d6c
raw
history blame contribute delete
No virus
234 Bytes
import gradio as gr
title = "Interactive demo: Helsinki-NLP English to Spanish Translation"
iface = gr.Interface.load("huggingface/Helsinki-NLP/opus-mt-en-es",
title=title,
examples=[["Hello! My name is Omar"]]
)
iface.launch()