DocSrvNyk commited on
Commit
9ff51c7
·
verified ·
1 Parent(s): d2593ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -7
app.py CHANGED
@@ -27,15 +27,14 @@ def predict_ckd_severity(age, c3, c4):
27
 
28
  # Create the Gradio interface
29
  inputs = [
30
- gr.inputs.Number(label="Age (in years)"),
31
- gr.inputs.Number(label="C3"),
32
- gr.inputs.Number(label="C4")
33
  ]
34
 
35
  outputs = [
36
- gr.outputs.Textbox(label="C3/C4 Ratio"),
37
- gr.outputs.Textbox(label="Prediction")
38
-
39
  ]
40
 
41
- gr.Interface(fn=predict_ckd_severity, inputs=inputs, outputs=outputs, title="CKD Severity Prediction").launch()
 
27
 
28
  # Create the Gradio interface
29
  inputs = [
30
+ gr.Number(label="Age (in years)"),
31
+ gr.Number(label="C3"),
32
+ gr.Number(label="C4")
33
  ]
34
 
35
  outputs = [
36
+ gr.Textbox(label="C3/C4 Ratio"),
37
+ gr.Textbox(label="Prediction")
 
38
  ]
39
 
40
+ gr.Interface(fn=predict_ckd_severity, inputs=inputs, outputs=outputs, title="CKD Severity Prediction").launch()