From ee52d74ba49271249ccb38ac16db97a927d453c6 Mon Sep 17 00:00:00 2001 From: RAYMOND Olivier <34789438+Isdinval@users.noreply.github.com> Date: Fri, 7 Jun 2024 08:39:39 +0200 Subject: [PATCH] Update dashboard_CLOUD.py --- dashboard_CLOUD.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dashboard_CLOUD.py b/dashboard_CLOUD.py index 629398a..8221e9f 100644 --- a/dashboard_CLOUD.py +++ b/dashboard_CLOUD.py @@ -250,7 +250,6 @@ def main(): # ========================================================================= # EXPLAINABILITY SECTIONS # ========================================================================= - st.header("I. Model Explanation") explainability_sections = """ This loan approval prediction model is an XGBoost classifier. XGBoost stands for eXtreme Gradient Boosting, a powerful machine learning algorithm that combines the strengths of multiple decision trees to make more accurate predictions. It's known for its efficiency, scalability, and ability to handle complex relationships between features. The model analyzes various customer attributes, such as income, credit history, and debt-to-income ratio, to estimate the probability of loan default. The model's output is a probability score between 0% and 100%, where a lower score indicates a lower risk of the borrower defaulting on the loan. @@ -258,7 +257,7 @@ def main(): st.write(explainability_sections) - + st.header("I. Choice of the Customer in the Dataset Test") # Input field for SK_ID_CURR sk_id_curr = st.number_input('Enter SK_ID_CURR (ex: 100001 or 101268):', min_value=customer_data['SK_ID_CURR'].min(), max_value=customer_data['SK_ID_CURR'].max())