File size: 331 Bytes
105e4ca
0c191cc
53d9e06
0c191cc
 
03c6127
0c191cc
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr
from gradio.mix import Parallel

title = "My First Text Generator"
description = "input text and submit."

model1=gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
model3=gr.Interface.load("huggingface/EleutherAI/gpt-neo-2.7B")

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