Roshanmpraj/employee-salary-prediction
0
Employee Salary Prediction MLOps
Business Problem
Predict employee salary using:
- Age
- Experience
- Education
- SkillScore
Tech Stack
- Python
- Pandas
- NumPy
- Scikit-Learn
- FastAPI
- Joblib
- Docker
- GitHub
- Hugging Face
Project Structure
salary-prediction-mlops/
│
├── app.py
├── Dockerfile
├── requirements.txt
├── README.md
└── models/
├── model.pkl
└── encoder.pklAPI
Home
GET /Response
{
"message": "Salary Prediction API Running"
}Prediction
GET /predict?age=30&experience=5&education=Masters&skillscore=80Example Response
{
"Predicted Salary": 1250000
}