File size: 967 Bytes
2c42cd3
 
 
12bef43
510a1d2
 
f9eeb1b
2c42cd3
 
f9eeb1b
 
bc6d40c
510a1d2
f9eeb1b
12bef43
f9eeb1b
 
 
 
 
 
2c42cd3
8309864
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import gradio as gr
from gradio.mix import Series

description = "Input Chinese language or English language text, submit and the machine will generate additional English language text."
description1 = "Input Chinese language text, submit and the machine will generate additional English language text."


translator = gr.Interface.load("huggingface/Helsinki-NLP/opus-mt-zh-en")
model1 = gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
model2 = gr.Interface.load("huggingface/ckiplab/gpt2-base-chinese")

tg_demo = gr.Series(translator, model1, inputs=gr.Textbox(lines=5, label="Input Text"), description=description)
gt_demo = gr.Series(model2, translator, inputs=gr.Textbox(lines=5, label="Input Text"), description=description1)

demo = gr.TabbedInterface([tg_demo, gt_demo], ["Chinese and English Translator to Text Generator GPT-J-6B", "Chinese Language Generator GPT-2 to Chinese to English Translator"])

if __name__ == "__main__":
    demo.launch()