Spaces:
Build error
Build error
gr.Parallel.load(model1, model2,model3 title=myfirstvariable, description=mylovelysecondvariablevariable).launch()
Browse filesTo use the gr.Parallel function, use a full stop between gr. and Parallel, not a comma -- gr,Parallel is not correct!
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
|
|
|
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()
|