broadfield commited on
Commit
e9d3f22
·
verified ·
1 Parent(s): 294c131

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -58,11 +58,8 @@ with gr.Blocks(theme="Hev832/Applio-Theme") as b:
58
  with gr.Tab("Save Settings"):
59
  save_btn=gr.Button("Save")
60
  save_file=gr.File()
61
- save_btn.click(save_set,[names,length,noise,width,sen_pause],save_file)
62
  with gr.Tab("Load Settings"):
63
  load_file=gr.File()
64
- load_file.change(load_set,load_file,[names,length,noise,width,sen_pause])
65
- #load_btn=gr.Button("Load").click(load_set,load_file,[names,length,noise,width,sen_pause])
66
  with gr.Column(scale=2):
67
  in_txt=gr.Textbox(label="Text",lines=10)
68
  names=gr.Dropdown()
@@ -73,7 +70,8 @@ with gr.Blocks(theme="Hev832/Applio-Theme") as b:
73
  expbtn2=gr.Button("Example 2")
74
  with gr.Accordion("Model Config"):
75
  json_ob=gr.JSON(label="JSON")
76
-
 
77
  expbtn1.click(exp1,None,[in_txt,load_file])
78
  expbtn2.click(exp2,None,[in_txt,load_file])
79
  names.change(load_mod,names,json_ob)
 
58
  with gr.Tab("Save Settings"):
59
  save_btn=gr.Button("Save")
60
  save_file=gr.File()
 
61
  with gr.Tab("Load Settings"):
62
  load_file=gr.File()
 
 
63
  with gr.Column(scale=2):
64
  in_txt=gr.Textbox(label="Text",lines=10)
65
  names=gr.Dropdown()
 
70
  expbtn2=gr.Button("Example 2")
71
  with gr.Accordion("Model Config"):
72
  json_ob=gr.JSON(label="JSON")
73
+ save_btn.click(save_set,[names,length,noise,width,sen_pause],save_file)
74
+ load_file.change(load_set,load_file,[names,length,noise,width,sen_pause])
75
  expbtn1.click(exp1,None,[in_txt,load_file])
76
  expbtn2.click(exp2,None,[in_txt,load_file])
77
  names.change(load_mod,names,json_ob)