Update app.py
Browse files
app.py
CHANGED
@@ -27,15 +27,14 @@ def predict_ckd_severity(age, c3, c4):
|
|
27 |
|
28 |
# Create the Gradio interface
|
29 |
inputs = [
|
30 |
-
gr.
|
31 |
-
gr.
|
32 |
-
gr.
|
33 |
]
|
34 |
|
35 |
outputs = [
|
36 |
-
gr.
|
37 |
-
gr.
|
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()
|