Patt's picture
edit result
31e634c
raw
history blame
492 Bytes
import gradio as gr
from transformers import pipeline
translation = pipeline("translation", "Shularp/krirk-finetuned-Helsinki-NLP_opus-mt-ar-en")
def translate(text):
results = translation(text)
return [result['translation_text'] for result in results]
interface = gr.Interface(fn=translate,
inputs="text",
outputs=["text"],
title = "Translator",
description="Arabic-English translation machine")
interface.launch()