File size: 459 Bytes
3ae02fa
bdf8fe6
 
 
 
 
 
 
 
 
 
 
 
 
 
3ae02fa
9b76a09
8899ee2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import gradio as gr
from gradio.mix import Parallel




Myfirstvariable="My First Text Generation"
mylovelysecondvariable="Input text and submit"

model1=gr.Interface.load("huggingface/gpt2")
model2=gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.38")
model3=gr.Interface.load("huggingace/bigscience/bloom-560m")

gr.Parallel(model1, model2, model3,)



gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B",title=title,description=description).launch()