Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aymane-maghouti/loan-credit
This project aims to develop a machine learning model using Logistic Regression for classifying loan credit applications as either approved or rejected.
https://github.com/aymane-maghouti/loan-credit
data-science decision-making feature-engineering flask jupyter-notebook loan-credit logistic-regression machine-learning python sckiit-learn seaborn
Last synced: about 12 hours ago
JSON representation
This project aims to develop a machine learning model using Logistic Regression for classifying loan credit applications as either approved or rejected.
- Host: GitHub
- URL: https://github.com/aymane-maghouti/loan-credit
- Owner: aymane-maghouti
- Created: 2023-07-08T22:32:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-09T14:28:32.000Z (over 1 year ago)
- Last Synced: 2024-11-16T09:13:10.737Z (2 months ago)
- Topics: data-science, decision-making, feature-engineering, flask, jupyter-notebook, loan-credit, logistic-regression, machine-learning, python, sckiit-learn, seaborn
- Language: Jupyter Notebook
- Homepage: https://aymane-maghouti.github.io
- Size: 1.17 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Loan Credit Classification using Logistic Regression
This project aims to develop a machine learning model using Logistic Regression for classifying loan credit applications as either approved or rejected. Additionally, it includes a Flask web application for deploying the trained model.
## Table of Contents
- [Project Overview](#project-overview)
- [Installation](#installation)
- [Usage](#usage)## Project Overview
In this project, we leverage the power of Logistic Regression, a widely used classification algorithm, to predict the likelihood of loan credit approval based on various features such as income, credit history, employment status, and more.
The project repository includes the following components:
- `Loan_Credit_App/`: This directory contains the source code files for the flask web application.
- `dataset.csv/`: the dataset used for training and testing the model.
- `model.pkl`: The serialized trained Logistic Regression model.
- `app.py`: The Flask application for deploying the trained model.
- `requirements.txt`: A list of Python dependencies required to run the project.
- `Loan Credit.ipynb` : The jupyter Notebook for building the model.
The machine learning model builded is follow the following architecture :---
![Texte alternatif de l'image](Main/assets/archi.png)
---## Installation
To set up the project environment, follow these steps:
1. Clone the repository:
`git clone https://github.com/your-username/loan-credit-classification.git`
2. Navigate to the project directory:
`cd Loan-credit`
3. Install the dependencies:
`pip install -r requirements.txt`
## Usage
Run the Flask application:`python app.py`
Open your web browser and go to http://localhost:5000
you will able to see this UI (user interface)---
![Texte alternatif de l'image](Main/assets/UI.png)
---
Fill in the loan application details and click the "Predict" button.
The application will display the predicted loan credit decision as either approved or rejected.Feel free to customize the contents of the `README.md` file according to your specific project details and requirements.