Skreeauk commited on
Commit
21a7d19
·
verified ·
1 Parent(s): fabafa0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -16,12 +16,12 @@ items = ['Seraph', 'Opus', 'Draconic', 'Null Ele Foe', 'Off Ele Foe']
16
 
17
  demo = gr.Interface(
18
  fn=predict,
19
- inputs=[gr.Slider(minimum="0", maximum="2", label="PnS"),
20
  gr.Checkbox(label='Seraph', info="True or False"),
21
  gr.Checkbox(label='Opus', info="True or False"),
22
  gr.Checkbox(label='Draconic', info="True or False"),
23
  gr.Checkbox(label='Null Ele Foe', info="True or False"),
24
- gr.Checkbox(label='Off Ele Foe', info="True or False")]
25
  outputs="text"
26
  )
27
 
 
16
 
17
  demo = gr.Interface(
18
  fn=predict,
19
+ inputs=[gr.Slider(minimum=0, maximum=2, label="PnS"),
20
  gr.Checkbox(label='Seraph', info="True or False"),
21
  gr.Checkbox(label='Opus', info="True or False"),
22
  gr.Checkbox(label='Draconic', info="True or False"),
23
  gr.Checkbox(label='Null Ele Foe', info="True or False"),
24
+ gr.Checkbox(label='Off Ele Foe', info="True or False")],
25
  outputs="text"
26
  )
27