zonova commited on
Commit
d7bf89d
1 Parent(s): 8b4ec89

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -33,7 +33,7 @@ def predicter(SpO2, Age, Weight, Height, Temperature, Gender, Race):
33
 
34
  demo = gr.Interface(
35
  fn=predicter,
36
- inputs=[gr.Slider(88, 100),"number",gr.inputs.Number(label = "Weight in kg"),gr.inputs.Number(label = "Height in cm"),gr.inputs.Number(label = "Temperature in Celcius"),gr.Radio(["Male", "Female"]),gr.Radio(["White", "Black", "Asian", "Hispanic", "Other"])],
37
  outputs=[gr.Label(label = "Probabilities")],
38
  title = "Model Predictions"
39
  )
 
33
 
34
  demo = gr.Interface(
35
  fn=predicter,
36
+ inputs=[gr.Slider(88.1, 100),"number",gr.inputs.Number(label = "Weight in kg"),gr.inputs.Number(label = "Height in cm"),gr.inputs.Number(label = "Temperature in Celcius"),gr.Radio(["Male", "Female"]),gr.Radio(["White", "Black", "Asian", "Hispanic", "Other"])],
37
  outputs=[gr.Label(label = "Probabilities")],
38
  title = "Model Predictions"
39
  )