Skip to content

Commit

Permalink
Update dashboard_CLOUD.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Isdinval authored Jun 7, 2024
1 parent 7781fb5 commit ee52d74
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dashboard_CLOUD.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,15 +250,14 @@ 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.
"""
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())

Expand Down

0 comments on commit ee52d74

Please sign in to comment.