-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.py
30 lines (22 loc) · 1.35 KB
/
App.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import streamlit as st
# Title
st.title('Financial Inclusion in Africa')
# Header
st.text('Forecasting Weather a person in likely to have a bank account or not')
# divider line
st.write('---')
# subheader
st.subheader('Overview of the challenge')
# text
# Background and Objective
st.write("""
#### Background:
A prominent financial institution operating in East Africa is committed to fostering financial inclusion and reaching underserved populations. To achieve this, the institution is leveraging predictive modeling to identify potential clients who are likely to benefit from their banking services.
#### Objective:
The primary goal is to use machine learning models to predict which individuals are most likely to have a bank account. By doing so, the financial institution aims to streamline its outreach efforts, tailor services, and extend banking access to those who may not have traditionally engaged with formal financial services.
""")
# Solution Overview
st.write("""
#### Solution Overview:
The financial institution draws insights from demographic information and financial services usage data collected from a diverse pool of approximately 33,600 individuals across the East African countries of Kenya, Rwanda, Tanzania, and Uganda. Using a sophisticated binary classification model, we predict the likelihood of an individual having a bank account.
""")