This project aims to predict employee burnout using various machine learning models. The dataset used in this project contains information about employees and their burnout rates.
- 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 EmployeeBurnout_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.