This project aims to classify loan applications as approved or rejected using various machine learning models. The dataset used in this project contains information about loan applicants, such as their income, credit score, and loan amount.
- Python 3.x
- Virtual environment (optional but recommended)
-
Clone the repository:
git clone <repository-url> cd <repository-directory>
-
Create and activate a virtual environment:
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install the required packages:
pip install -r requirements.txt
Download the dataset from this link and place the CSV files in the data/
directory with the name as LoanApproval_Raw.csv
.
-
Exploration:
python src/01_exploration.py
-
Cleaning:
python src/02_cleaning.py
-
Processing:
python src/03_processing.py
-
Training:
python src/04_training.py
This project is licensed under the MIT License.