fr-en / app.py
ayaanzaveri's picture
Update app.py
8ff1ded
import gradio as gr
from transformers import pipeline
import pytorch
pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-fr-en")
def predict(text):
return pipe(text)[0]["translation_text"]
iface = gr.Interface(
fn=predict,
inputs='text',
outputs='text',
examples=[["Hello! My name is Omar"]]
)
iface.launch()