File size: 273 Bytes
a37c17d
7f9053a
a37c17d
7ace904
 
 
a37c17d
6cd7950
1
2
3
4
5
6
7
8
import gradio as gr
from gradio.mix import Parallel

model1 = gr.Interface.load("huggingface/gpt2")
model2 = gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
model3 = gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")

gr.Parallel(model1, model2, model3).launch()