File size: 370 Bytes
0afc150
fd82ab5
0afc150
a090aaf
 
1b436e0
fd82ab5
a090aaf
 
fd82ab5
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr
from gradio.mix import Parallel

doggie="My first Text generator"
description="input text and submit"

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

gr.Parallel(model1,model2,model3,title=doggie,description=description).launch()