- A web-application
- Takes in three user inputs (Experience, Test and Interview score).
- Outputs a prediction about the user's salary (Linear Regression).
Heroku live
- Create and activate virtual environment.
python3 -m venv venv
source venv/bin/activate
- Installing dependencies
pip install -r requirements.txt
- Run the application locally:
cd src
python3 app.py
- src -> Source code for the live webapplication
- machine-learning-model.ipynb -> contains the code for data cleaning and training.