translate / app.py
MathGpn's picture
Update app.py
3aaf1c6
raw
history blame contribute delete
318 Bytes
import gradio as gr
from transformers import pipeline
pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-en-fr")
def predict(text):
return pipe(text)[0]["translation_text"]
iface = gr.Interface(
fn=predict,
inputs='text',
outputs='text',
examples=[["Hello! My name is Mathis"]]
)
iface.launch()