Regression Models
Explore how to build regression models in Keras by working with a real-world hourly wage dataset. Learn data preparation, model architecture specification, compiling, fitting, and evaluating regression models without output activation functions. Understand practical regression modeling steps to predict continuous values effectively.
We'll cover the following...
We'll cover the following...
The Predict Hourly Wage dataset is taken from Kaggle. Make a model to predict wages per hour. The dataset contains the following columns:
Read and explore the data
Read the data from the given hourly_wages_data.csv and check for any missing values.
Line - 4: Reads the data in train_df using the read_csv method.
train_df = ...