Spaces:
Runtime error
Runtime error
File size: 440 Bytes
1195bec f2b1a97 299bf3f f2b1a97 411bba0 f2b1a97 75eeb78 a3ba7a4 8c1acd5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
from gradio.mix import Parallel
title="My First Generator"
description="Input text and summit."
model1=gr.Interface.load("huggingface/gpt2")
model2=gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
model3=gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
model4=gr.Interface.load("huggingface/EleutherAI/gpt-neo-2.7B")
gr.Parallel(model1,model2,model3,model4, title=title, description=description).launch() |