πβ Welcome to my ML repos. These are the lecture notes and exercises I have done when I took the some of the ML course from 365 Data Science and Coursera.
π― Predict the price of different used cars using Multiple Linear Regression Model
- Expore the descriptive statistics of the variables
- Remove/ Input
Missing Values Probability Density Functionof each variable of interest- Remove
oulier/abnormal value - Checking Ordinary Least Square
assumption(ApplyLog Transformationto make distribution of a variable more normally distributed; ApplyVariance Inflation Factorto checkMulticollinearity - Creat dummy variables
- Declare the inputs and targets
- Feature scalling (
Standardization) - Train Test split
- Create a Regression model
- Check performance (Using the
Residuals PDFandR-squared)
π― Predict the Price of the US House using Multiple Linear Regression Model
βοΈ I used same techniques as I did in the Used Car Price Prediction.
π― Build the Gradient Descent Algorithm from Scratch!