File size: 387 Bytes
c32fa80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- coding: utf-8 -*-
"""Demo.ipynb

Automatically generated by Colaboratory.

Original file is located at
    https://colab.research.google.com/drive/1vy72Qs-scdzH68lhYbGN11fLzcE9Md1O
"""
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()