Skip to content

melling/ml-regression

Repository files navigation

This is a collection of repos devoted to learning machine learning with Kaggle.

Follow me on Kaggle

Machine Learning Regression with Kaggle House Prices

This is a deep dive into learning to solve machine learning regression problems. Supervised learning with a continuous target value.

The data set used is from the the Kaggle Competition House Prices - Advanced Regression Techniques

Given several dozen predictors/featues, we want to accurately predict the sale price of a house.

Notebooks

Misc Notebooks

  • [DSML Feature Selection]

Machine Learning Models Covered

  • Linear Regression
    • Lasso - L1
    • Ridge - L2
    • Polynomial
    • Residuals
    • Collinearity
    • Interactions
    • Mathematics
      • Solving Ax=b using numpy
      • Normal Equations
  • Decision Trees
  • Gradient Boosted Decision Trees (GBDT)
  • Support Vector Machines
  • Principal Component Analysis (PCA)
  • Stochastic Gradient Descent
  • Deep Neural Networks (DNN)
    • Activation Functions

In addition, we will cover other topics important to machine learning:

MAE

Mean Absolute Error

$$MAE = \frac{\sum_{i=1}^n |y_i - x_i|}{n}$$

RMSE

RMSE

$$RMSE = \sqrt{\frac{1}{n}\Sigma_{i=1}^{n}{\Big(\frac{\hat{y}_i -y_i}{\sigma_i}\Big)^2}}$$

About

Machine Learning Regression with Kaggle House Prices

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published