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 3832743 commit 8d011d5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions dashboard_CLOUD.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,11 @@ def main():
# Set page title
st.title("Credit Scoring Dashboard")
st.write("Welcome to the Credit Scoring Dashboard! Use the form below to make predictions.")
st.image("P7_Banner.png", width=400)
# IMAGE PROJECT BANNER
col1, col2, col3 = st.columns([1, 3, 1]) # Adjust column ratios as needed
with col2:
st.image("P7_Banner.png", width=800) # Adjust width as desired


# =========================================================================
# EXPLAINABILITY SECTIONS
Expand All @@ -256,9 +260,6 @@ def main():
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.
"""

col1, col2, col3 = st.columns([1, 3, 1]) # Adjust column ratios as needed
with col2:
st.image("P7_Banner.png", width=800) # Adjust width as desired


st.header("I. Choice of the Customer in the Dataset Test")
Expand Down

0 comments on commit 8d011d5

Please sign in to comment.