Spaces:
Build error
Build error
| #level 3 text generator | |
| import gradio as gr | |
| from gradio.mix import Series | |
| title = "Chinese and English Translator with Text Generator Flan-T5-XL" | |
| description = "Input Chinese or English 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/ckiplab/gpt2-base-chinese") | |
| model2 = gr.Interface.load("huggingface/google/flan-t5-xl") | |
| gr.Series(translator, model2, inputs=gr.Textbox(lines=5, label="Input Text"), title=title, description=description).launch() |