The aim of this project is to provide accurate predictions of employee attrition within an organization by analyzing multiple employee-related features.
- Datasets
- Project Structure
- Getting Started
- Author
This data set created by IBM data scientists.
├── data
| └── raw <- Raw datasets.
├── models <- saved models.
├── notebooks <- Jupyter notebooks.
├── reports <- Generated figures.
├── scripts
| ├── main.py
| ├── predict.py
| ├── preprocess.py
| └── utils.py
├── Makefile
├── README.md
├── requirements.txt
└── setup.py
- create a virtualenv with Python 3.8 and activate it.
python3 -m vevn venv
source venv/bin/activate
git clone https://github.com/ldebele/Employee-Attrition-Prediction
cd Employee-Attrition-Prediction
make install
To run the web locally
make run
This app is Employee Attrition Prediction. It predict whether the employee is Stay or Leave the company based on some features.
Deployment is done on streamlit.io
- To access this app on Streamlit web App
Lemi Debele