Build Linear Regression Models Using Linear Algebra
In the preceding course, you went through the overall machine learning workflow from start to finish. Now it's time to start digging into the algorithms that make up machine learning. This will help you select the most appropriate algorithm(s) for your own purposes, as well as how best to apply them to solve a problem. A good place to start is with simple linear regression.
Build Regularized and Iterative Linear Regression Models
The simple model you created earlier works well in many cases, but that doesn't mean it's the optimal approach. Linear regression can be enhanced by the process of regularization, which will often improve the skill of your machine learning model. In addition, an iterative approach to regression can take over where the closed-form solution falls short. In this module, you'll apply both techniques.
Train Classification Models
Besides linear regression, the other major type of supervised machine learning outcome is classification. To begin with, you'll train some binary classification models using a few different algorithms. Then, you'll train a model to handle cases in which there are multiple ways to classify a data example. Each algorithm may be ideal for solving a certain type of classification problem, so you need to be aware of how they differ.
Evaluate and Tune Classification Models
It's not enough to just train a model you think is best, and then call it a day. Unless you're using a very simple dataset or you get lucky, the default parameters aren't going to give you the best possible model for solving the problem. So, in this module, you'll evaluate your classification models to see how they're performing, then you'll attempt to improve their skill.
Build Clustering Models
You've built models to tackle linear regression problems and classification problems. One of the other major machine learning tasks that you might want to engage in is clustering, a form of unsupervised learning. In this module, you'll see how a machine learning model can help you identify useful patterns even when the data you have to work with isn't labeled.
Apply What You've Learned
You'll work on a project in which you'll apply your knowledge of the material in this course to practical scenarios.