buio commited on
Commit
817f56c
·
1 Parent(s): 801e148

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -58,9 +58,10 @@ output = gr.Textbox(label='Probability of having a heart disease, as evaluated b
58
  examples = []
59
  title = "Heart Disease Classification"
60
  description = "Play with the clinical values or select examples below"
61
- examples = [[63, 1, 1, 145, 233, 1, 2, 150, 0, 2.3, 3, 0, 'fixed'],
62
- [67, 1, 4, 160, 286, 0, 2, 108, 1, 1.5, 2, 3, 'normal'],
63
- [67, 1, 4, 120, 229, 0, 2, 129, 1, 2.6, 2, 2, 'reversible']]
64
 
65
- gr.Interface(convert_and_predict, inputs, output, examples= examples, allow_flagging=False,
 
66
  title=title, description=description).launch()
 
58
  examples = []
59
  title = "Heart Disease Classification"
60
  description = "Play with the clinical values or select examples below"
61
+ #examples = [[63, 1, 1, 145, 233, 1, 2, 150, 0, 2.3, 3, 0, 'fixed'],
62
+ # [67, 1, 4, 160, 286, 0, 2, 108, 1, 1.5, 2, 3, 'normal'],
63
+ # [67, 1, 4, 120, 229, 0, 2, 129, 1, 2.6, 2, 2, 'reversible']]
64
 
65
+ gr.Interface(convert_and_predict, inputs, output,
66
+ allow_flagging=False,
67
  title=title, description=description).launch()