Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -50,29 +50,29 @@ with gr.Blocks(css="""
|
|
| 50 |
|
| 51 |
with gr.Row():
|
| 52 |
with gr.Column():
|
| 53 |
-
gr.Markdown("<h3
|
| 54 |
age = gr.Slider(minimum=0, maximum=100, step=1, value=35, label="", interactive=True)
|
| 55 |
|
| 56 |
-
gr.Markdown("<h3
|
| 57 |
education = gr.Dropdown(choices=[str(i) for i in range(1, 17)], value="10", label="", interactive=True)
|
| 58 |
|
| 59 |
-
gr.Markdown("<h3
|
| 60 |
sex = gr.Radio(choices=["Male", "Female"], value="Male", label="", interactive=True)
|
| 61 |
|
| 62 |
-
gr.Markdown("<h3
|
| 63 |
capital_gain = gr.Number(value=0, label="", interactive=True)
|
| 64 |
|
| 65 |
-
gr.Markdown("<h3
|
| 66 |
capital_loss = gr.Number(value=0, label="", interactive=True)
|
| 67 |
|
| 68 |
-
gr.Markdown("<h3
|
| 69 |
hours_per_week = gr.Number(value=40, label="", interactive=True)
|
| 70 |
|
| 71 |
predict_btn = gr.Button("๐ฎ Predict", elem_id="predict-button")
|
| 72 |
|
| 73 |
with gr.Row():
|
| 74 |
with gr.Column():
|
| 75 |
-
gr.Markdown("<h3
|
| 76 |
result = gr.Textbox(label="", interactive=False)
|
| 77 |
confidence = gr.Textbox(label="Confidence", interactive=False)
|
| 78 |
shap_plot = gr.Plot(label="SHAP Feature Importance")
|
|
@@ -86,3 +86,4 @@ with gr.Blocks(css="""
|
|
| 86 |
demo.launch()
|
| 87 |
|
| 88 |
|
|
|
|
|
|
| 50 |
|
| 51 |
with gr.Row():
|
| 52 |
with gr.Column():
|
| 53 |
+
gr.Markdown("<h3>๐ Age</h3>")
|
| 54 |
age = gr.Slider(minimum=0, maximum=100, step=1, value=35, label="", interactive=True)
|
| 55 |
|
| 56 |
+
gr.Markdown("<h3>๐ Education Level</h3>")
|
| 57 |
education = gr.Dropdown(choices=[str(i) for i in range(1, 17)], value="10", label="", interactive=True)
|
| 58 |
|
| 59 |
+
gr.Markdown("<h3>โง๏ธ Sex</h3>")
|
| 60 |
sex = gr.Radio(choices=["Male", "Female"], value="Male", label="", interactive=True)
|
| 61 |
|
| 62 |
+
gr.Markdown("<h3>๐ Capital Gain</h3>")
|
| 63 |
capital_gain = gr.Number(value=0, label="", interactive=True)
|
| 64 |
|
| 65 |
+
gr.Markdown("<h3>๐ Capital Loss</h3>")
|
| 66 |
capital_loss = gr.Number(value=0, label="", interactive=True)
|
| 67 |
|
| 68 |
+
gr.Markdown("<h3>โฑ๏ธ Hours per Week</h3>")
|
| 69 |
hours_per_week = gr.Number(value=40, label="", interactive=True)
|
| 70 |
|
| 71 |
predict_btn = gr.Button("๐ฎ Predict", elem_id="predict-button")
|
| 72 |
|
| 73 |
with gr.Row():
|
| 74 |
with gr.Column():
|
| 75 |
+
gr.Markdown("<h3>๐ Prediction Result</h3>")
|
| 76 |
result = gr.Textbox(label="", interactive=False)
|
| 77 |
confidence = gr.Textbox(label="Confidence", interactive=False)
|
| 78 |
shap_plot = gr.Plot(label="SHAP Feature Importance")
|
|
|
|
| 86 |
demo.launch()
|
| 87 |
|
| 88 |
|
| 89 |
+
|