xp3857 commited on
Commit
d04eaef
1 Parent(s): 7d29d7b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -88,13 +88,13 @@ def ac():
88
  def clear_all():
89
  return "",None,None,None,None,None,None,1
90
  fac_b = gr.Textbox(value="",visible=False)
91
- btn1.click(cl_fac,None,[fac_b,message])
92
- b1=btn1.click(start,None,[t_state,t_switch])
93
  sta = t_state.change(end,t_state,[t_switch,message],every=1,show_progress=False)
94
- b2=btn1.click(im_fn,[put,fac_b,h],[out1,fac_b])
95
- b3=out1.change(im_fn,[put,fac_b,h],[out2,fac_b])
96
- b4=out2.change(im_fn,[put,fac_b,h],[out3,fac_b])
97
- b5=out3.change(im_fn,[put,fac_b,h],[out4,fac_b])
98
  swi=t_switch.change(clear,None,[t_switch,fac_b], cancels=[sta,b2,b3,b4,b5],show_progress=False)
99
  btn2.click(clear_all, None,[fac_b,put,out1,out2,out3,out4,t_state,t_switch],cancels=[b1,sta,b2,b3,b4,b5],show_progress=False)
100
  b.queue(concurrency_count=100).launch(show_api=False)
 
88
  def clear_all():
89
  return "",None,None,None,None,None,None,1
90
  fac_b = gr.Textbox(value="",visible=False)
91
+ btn1.click(cl_fac,None,[fac_b,message], show_progress=False)
92
+ b1=btn1.click(start,None,[t_state,t_switch], show_progress=False)
93
  sta = t_state.change(end,t_state,[t_switch,message],every=1,show_progress=False)
94
+ b2=btn1.click(im_fn,[put,fac_b,h],[out1,fac_b], show_progress=False)
95
+ b3=out1.change(im_fn,[put,fac_b,h],[out2,fac_b], show_progress=False)
96
+ b4=out2.change(im_fn,[put,fac_b,h],[out3,fac_b], show_progress=False)
97
+ b5=out3.change(im_fn,[put,fac_b,h],[out4,fac_b], show_progress=False)
98
  swi=t_switch.change(clear,None,[t_switch,fac_b], cancels=[sta,b2,b3,b4,b5],show_progress=False)
99
  btn2.click(clear_all, None,[fac_b,put,out1,out2,out3,out4,t_state,t_switch],cancels=[b1,sta,b2,b3,b4,b5],show_progress=False)
100
  b.queue(concurrency_count=100).launch(show_api=False)