LEWOPO's picture
Create app.py
1892cb4 verified
raw
history blame contribute delete
416 Bytes
import sentencepiece
from transformers import pipeline
import gradio as gr
translator=pipeline("translation",model='Helsinki-NLP/opus-mt-fr-en')
def Get_Translation(input_text):
texte=translator(input_text)
result= texte[0]['translation_text']
return result
iface = gr.Interface(fn=Get_Translation,title='Text Translation',inputs='text',outputs='text',description='Get translation of giving input').launch()