Please spell Parallel carefully, use "quotation marks" and = not -

#1
by Wootang01 - opened
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2,11 +2,11 @@ import gradio as gr
2
  from gradio.mix import Parallel
3
 
4
  title="My First Text Generation"
5
- description="Input text.
6
 
7
  mode11=gr.Interface.load("huggingface?EleutherAI/gpt-j-6B")
8
  mode12=gr.Interface.load("huggingface/gpt2")
9
  mode13=gr.Interface.load("huggingface?EleutherAI/gpt-neo-125M")
10
 
11
- gr.Parellel(mode11,mode12,mode13,title-title,description=description).launch()
12
 
 
2
  from gradio.mix import Parallel
3
 
4
  title="My First Text Generation"
5
+ description="Input text."
6
 
7
  mode11=gr.Interface.load("huggingface?EleutherAI/gpt-j-6B")
8
  mode12=gr.Interface.load("huggingface/gpt2")
9
  mode13=gr.Interface.load("huggingface?EleutherAI/gpt-neo-125M")
10
 
11
+ gr.Parallel(mode11,mode12,mode13,title=title,description=description).launch()
12