File size: 375 Bytes
2c07f3b
4aedaa4
5bf74fb
807a74e
 
32ee615
 
 
 
 
807a74e
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr
from gradio.mix import Series

title="My Frist Generator"
description="Input text and summit,"

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, title=title, description=description).launch()