Gabriel commited on
Commit
b498f00
·
1 Parent(s): 9deafd0
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -24,8 +24,8 @@ def calc(X_test):
24
 
25
  iface = gr.Interface(
26
  fn=calc,
27
- inputs=[gr.DropDown('Feature 1', choices=['Option 1', 'Option 2', 'Option 3']),
28
- gr.DropDown('Feature 2', choices=['Option A', 'Option B', 'Option C']),
29
  # Add more DropDown or other input components as needed
30
  ],
31
  outputs="text",
 
24
 
25
  iface = gr.Interface(
26
  fn=calc,
27
+ inputs=[gr.Dropdown('Feature 1', choices=['Option 1', 'Option 2', 'Option 3']),
28
+ gr.Dropdown('Feature 2', choices=['Option A', 'Option B', 'Option C']),
29
  # Add more DropDown or other input components as needed
30
  ],
31
  outputs="text",