Wootang01 commited on
Commit
d81adfe
1 Parent(s): 9b4a967

gr.Parallel.load(model1, model2,model3 title=myfirstvariable, description=mylovelysecondvariablevariable).launch()

Browse files

To use the gr.Parallel function, use a full stop between gr. and Parallel, not a comma -- gr,Parallel is not correct!

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,4 +7,4 @@ model1=gr.Interface.load("huggingface/gpt2")
7
  model2=gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
8
  model3=gr.Interface.load("huggingface/bigscience/bloom-560m")
9
 
10
- gr,Parallel.load(model1, model2,model3 title=myfirstvariable, description=mylovelysecondvariablevariable).launch()
 
7
  model2=gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
8
  model3=gr.Interface.load("huggingface/bigscience/bloom-560m")
9
 
10
+ gr.Parallel.load(model1, model2,model3 title=myfirstvariable, description=mylovelysecondvariablevariable).launch()