translator / app.py
peter2489's picture
Rename App.py to app.py
f9b5b86
import gradio as gr
import transformers
from transformers import pipeline
pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-ko-en")
demo = gr.Interface.from_pipeline(pipe)
demo.launch()