CognitiveScience commited on
Commit
3b31d45
·
1 Parent(s): 8583ad1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -198,11 +198,11 @@ with gr.Blocks() as demo:
198
  count = gr.Number(label="Rates!", visible=False)
199
  with gr.Row():
200
  with gr.Column():
201
- name = gr.Textbox(label="a") #, placeholder="What is your name?")
202
- rate = gr.Textbox(label="b") #, placeholder="What is your name?") #gr.Radio(label="How satisfied are you with using gradio?", choices=[1, 2, 3, 4, 5])
203
- celsci = gr.Textbox(label="c") #, lines=10, placeholder="Do you have any feedback on gradio?")
204
  #run_actr()
205
- submit = gr.Button(value=".")
206
  submit.click(ccogsphere, [name, rate, celsci], [data, count])
207
  demo.load(load_data, None, [data, count])
208
  #@name.change(inputs=name, outputs=celsci,_js="window.location.reload()")
 
198
  count = gr.Number(label="Rates!", visible=False)
199
  with gr.Row():
200
  with gr.Column():
201
+ name = gr.Textbox(label="a", visible=False) #, placeholder="What is your name?")
202
+ rate = gr.Textbox(label="b", visible=False) #, placeholder="What is your name?") #gr.Radio(label="How satisfied are you with using gradio?", choices=[1, 2, 3, 4, 5])
203
+ celsci = gr.Textbox(label="c", visible=False) #, lines=10, placeholder="Do you have any feedback on gradio?")
204
  #run_actr()
205
+ submit = gr.Button(value=".", visible=False)
206
  submit.click(ccogsphere, [name, rate, celsci], [data, count])
207
  demo.load(load_data, None, [data, count])
208
  #@name.change(inputs=name, outputs=celsci,_js="window.location.reload()")