cati commited on
Commit
994439e
1 Parent(s): 61e255a
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -39,9 +39,10 @@ with bl:
39
  amenu1 = gr.Dropdown(["MFA", "w2v2"],label="Aligner")
40
 
41
  btn1 = gr.Button(value="Update Plot 1 >> ")
42
- btn1.click(manager, [wmenu1, lmenu1, amenu1, btn1], pl1)
43
  with gr.Column():
44
  pl1 = gr.Plot()
 
 
45
 
46
 
47
  with gr.Row():
@@ -51,9 +52,11 @@ with bl:
51
  amenu2 = gr.Dropdown(["MFA", "w2v2"],label="Aligner")
52
 
53
  btn2 = gr.Button(value="Update Plot 2 >> ")
54
- btn2.click(manager, [wmenu2, lmenu2, amenu2, btn2], pl2)
55
  with gr.Column():
56
- pl2 = gr.Plot()
 
 
 
57
 
58
 
59
 
 
39
  amenu1 = gr.Dropdown(["MFA", "w2v2"],label="Aligner")
40
 
41
  btn1 = gr.Button(value="Update Plot 1 >> ")
 
42
  with gr.Column():
43
  pl1 = gr.Plot()
44
+ btn1.click(manager, [wmenu1, lmenu1, amenu1, btn1], pl1)
45
+
46
 
47
 
48
  with gr.Row():
 
52
  amenu2 = gr.Dropdown(["MFA", "w2v2"],label="Aligner")
53
 
54
  btn2 = gr.Button(value="Update Plot 2 >> ")
 
55
  with gr.Column():
56
+ with gr.Box():
57
+ pl2 = gr.Plot()
58
+ btn2.click(manager, [wmenu2, lmenu2, amenu2, btn2], pl2)
59
+
60
 
61
 
62