buio commited on
Commit
801e148
·
1 Parent(s): 328be1e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -30,7 +30,7 @@ def convert_and_predict(age, sex, cp, trestbps, chol, fbs, restecg, thalach, exa
30
 
31
  return f'{predictions[0][0]:.2%}'
32
 
33
- ## gradio interface elements
34
  inputs = [
35
  gr.Slider(minimum=1, maximum=120, step=1, label='age', value=60),
36
  gr.Radio(choices=['female','male'], label='sex', type='index',value='male'),
@@ -48,11 +48,10 @@ inputs = [
48
  gr.Radio(choices=['no','yes',], type='index', label='exercise induced angina',value='no'),
49
  gr.Number(label='ST depression induced by exercise relative to rest', value=2.3),
50
  gr.Radio(choices=['psloping','flat','downsloping'], label='slope of the peak exercise ST segment', type='index', value='downsloping'),
51
- gr.Number(label ='number of major vessels (0-3) colored by flourosopy',value=0),
52
  gr.Radio(['normal','fixed','reversable'],label ='thal', value='fixed')
53
  ]
54
 
55
-
56
  # the app outputs text
57
  output = gr.Textbox(label='Probability of having a heart disease, as evaluated by our model:')
58
  # it's good practice to pass examples, description and a title to guide users
@@ -63,5 +62,5 @@ examples = [[63, 1, 1, 145, 233, 1, 2, 150, 0, 2.3, 3, 0, 'fixed'],
63
  [67, 1, 4, 160, 286, 0, 2, 108, 1, 1.5, 2, 3, 'normal'],
64
  [67, 1, 4, 120, 229, 0, 2, 129, 1, 2.6, 2, 2, 'reversible']]
65
 
66
- gr.Interface(convert_and_predict, inputs, output, examples= examples, allow_flagging=False, analytics_enabled=False,
67
  title=title, description=description).launch()
 
30
 
31
  return f'{predictions[0][0]:.2%}'
32
 
33
+
34
  inputs = [
35
  gr.Slider(minimum=1, maximum=120, step=1, label='age', value=60),
36
  gr.Radio(choices=['female','male'], label='sex', type='index',value='male'),
 
48
  gr.Radio(choices=['no','yes',], type='index', label='exercise induced angina',value='no'),
49
  gr.Number(label='ST depression induced by exercise relative to rest', value=2.3),
50
  gr.Radio(choices=['psloping','flat','downsloping'], label='slope of the peak exercise ST segment', type='index', value='downsloping'),
51
+ gr.Number(minimum=0, maximum=3, label ='number of major vessels (0-3) colored by flourosopy',value=0),
52
  gr.Radio(['normal','fixed','reversable'],label ='thal', value='fixed')
53
  ]
54
 
 
55
  # the app outputs text
56
  output = gr.Textbox(label='Probability of having a heart disease, as evaluated by our model:')
57
  # it's good practice to pass examples, description and a title to guide users
 
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()