EllaTsoi commited on
Commit
68fa49e
1 Parent(s): a64c200

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -8,4 +8,5 @@ model1=Interface.load("huggingface/gpt2")
8
  model2=Interface.load("huggingface/EleutherAI/gpt-j-6B")
9
  model3=Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
10
 
11
- gr.Interface.load(model1,model2,model3,title=title,description=description).launch()
 
 
8
  model2=Interface.load("huggingface/EleutherAI/gpt-j-6B")
9
  model3=Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
10
 
11
+
12
+ gr.Parallel(model1,model2,model3,title=title,description=description).launch()