Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -63,12 +63,12 @@ with gr.Blocks() as app:
|
|
63 |
with gr.Row():
|
64 |
with gr.Column():
|
65 |
gr.Markdown("#### INPUT PARAMETERS")
|
66 |
-
model_selection = gr.Dropdown(choices=['Random Forest', 'Gradient Boost', 'Neural Network'], label="Model Selection"
|
67 |
-
interpretability_selection = gr.Dropdown(choices=['LIME', 'SHAP'], label="Interpretability Technique"
|
68 |
-
step = gr.Number(label="Step(Transaction Time)"
|
69 |
-
transaction_type = gr.Dropdown(choices=['Transfer', 'Payment', 'Cash Out', 'Cash In'], label="Transaction Type"
|
70 |
-
transaction_amount = gr.Number(label="Transaction Amount"
|
71 |
-
old_balance_org = gr.Number(label="Old Balance Org"
|
72 |
submit_btn = gr.Button("Analyze")
|
73 |
|
74 |
# Define outputs
|
|
|
63 |
with gr.Row():
|
64 |
with gr.Column():
|
65 |
gr.Markdown("#### INPUT PARAMETERS")
|
66 |
+
model_selection = gr.Dropdown(choices=['Random Forest', 'Gradient Boost', 'Neural Network'], label="Model Selection")
|
67 |
+
interpretability_selection = gr.Dropdown(choices=['LIME', 'SHAP'], label="Interpretability Technique")
|
68 |
+
step = gr.Number(label="Step(Transaction Time)")
|
69 |
+
transaction_type = gr.Dropdown(choices=['Transfer', 'Payment', 'Cash Out', 'Cash In'], label="Transaction Type")
|
70 |
+
transaction_amount = gr.Number(label="Transaction Amount")
|
71 |
+
old_balance_org = gr.Number(label="Old Balance Org")
|
72 |
submit_btn = gr.Button("Analyze")
|
73 |
|
74 |
# Define outputs
|