DonnyChuang commited on
Commit
e8deb39
·
1 Parent(s): e16f77d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -4,8 +4,7 @@ from gradio.mix import Parallel
4
  myfirstvariable="My First Text Generator"
5
  mylovelysecondvariable="Input text and submit."
6
 
7
- model1=gr.Interface.load("huggingface/gpt2")
8
- model2=gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
9
- model3=gr.Interface.load("huggingface/bigscience/bloom-560m")
10
 
11
- gr.Parallel(model1, model2, model3, title=myfirstvariable, description=mylovelysecondvariable).launch()
 
4
  myfirstvariable="My First Text Generator"
5
  mylovelysecondvariable="Input text and submit."
6
 
7
+ model1=gr.Interface.load("huggingface/EleutherAI/gpt-neo-125M")
8
+ model2=gr.Interface.load("huggingface/bigscience/bloom-560m")
 
9
 
10
+ gr.Parallel(model1, model2, title=myfirstvariable, description=mylovelysecondvariable).launch()