Spaces:
Runtime error
Runtime error
import gradio as gr | |
from gradio.mix import Series | |
translator = gr.Interface.load("huggingface/Helsinki-NLP/opus-mt-zh-en") | |
model1 = gr.Interface.load("huggingface/ckiplab/gpt2-base-chinese") | |
#model2 = gr.Interface.load("huggingface/EleutherAI/gpt-j-6B") | |
title = "Chinese Text Generator and Chinese to English Translator" | |
description = "Input Chinese language text, submit and the machine will generate additional Chinese language text and translate that text into English." | |
gr.Series(model1, translator, inputs=gr.Textbox(lines=5, label="Input Text"), title=title, description=description).launch(debug=True) |