Translation / app.py
atomiclabs's picture
Update app.py
192ce6e
raw
history blame
No virus
146 Bytes
import gradio as gr
iface = gr.Interface.load("huggingface/Helsinki-NLP/opus-mt-en-es",
examples=[["Hello! My name is Omar"]]
)
iface.launch()