#Creating the Model
- Understand Business Problem - Create a model to predict the salary of a new hire based on the historic data with test_score, interview_score and experience (I/P). HR should be able to enter the details in a form and should receive predicted salary from the model.
- Data Collection 
- Data Exploration - info(),describe()
- Data Cleaning
- Data Wrangling
- Modelling
1. Train-Test Split 2. Creating model 3. Training model with Train Data (X_Train and Y_Train. - Evaluate the model with Test Data(X_Test) RMSE and R2
- Dumping the model - Save the model to a local folder
#Creating the Flask Application
- Load the model
- Creating the routes /Index - For HTML page /predict For calling the model with predicted data
- Test /predict endpoint from the postman POST request
- Creating the HTML Page and calling /predict route