Spaces:
Runtime error
Runtime error
File size: 340 Bytes
3ae02fa bdf8fe6 71454c6 bdf8fe6 71454c6 |
1 2 3 4 5 6 7 8 9 |
import gradio as gr
from gradio.mix import Parallel
model1=gr.Interface.load("huggingface/gpt2")
model2=gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
model3=gr.Interface.load("huggingace/bigscience/bloom-560m")
gr.Parallel(model1, model2, model3, title="My First Text Generation", description="Input text and submit").launch()
|