CommonLounge Archive

Learn Machine Learning

December 09, 2017

This 29-part course consists of tutorials on ML concepts and algorithms, as well as end-to-end follow-along ML examples, quizzes, and hands-on projects.

Once done, you will have an excellent conceptual and practical understanding of machine learning and feel comfortable applying ML thinking and algorithms in your projects and work.

The primary objectives of this course are:

  1. Understand the core concepts in machine learning — model parameters, optimization, generalization, regularization, and so on.
  2. Understand some popular machine learning algorithms - this course covers 8 ML algorithms, I recommend you learn at-least 5 well
  3. Implement machine learning algorithms from scratch (recommend doing at-least 2)
  4. Apply machine learning algorithms for prediction tasks (recommend doing at-least 2)
  5. Do a more extensive machine learning project (recommend doing at-least 1)

Prerequisites: Python and Linear Algebra, Statistics and NumPy

Related course: Learn Data Science with Python


Subscribe to add this course to the top of your Home Page. Get started with the first article below.


An introduction to Machine Learning

We’ll start by describing what machine learning is, and introduce a simple learning algorithm: linear regression + gradient descent. Using this algorithm, we’ll introduce the core concepts in machine learning: model parameters, cost function, optimization method, and overfitting and regularization. This section ends with a visual review of these concepts and a tutorial on the different types of machine learning problems.

Algorithms for Supervised Learning

In this section, we’ll see various algorithms for supervised machine learning. Different algorithms perform better for different types of data, where deciding factors would include total number of dimensions in input data, whether the data is text or numerical or a time series, whether or not the data is sparse, size of dataset, and so on. For each algorithm, we’ll explain how it works and the applications for which it produces state-of-the-art results.

The algorithms don’t depend on each other and require different amounts of mathematical maturity. If you have trouble with some of the mathematically heavy ones (such as SVMs), feel free to skip or take extra time.

Neural Networks and Deep Learning

In this section, we’ll learn about deep learning! We’ll also compare deep learning to traditional machine learning algorithms (which we encountered in the previous section), and see why it is different. If you’re interested in learning more about deep learning, check out the comprehensive deep learning course here: Deep learning, from novice to expert, self-paced

Algorithms for Unsupervised Learning

In this section, we’ll cover unsupervised learning concepts such as clustering, dimensionality reduction, the curse of dimensionality, feature extraction and feature selection. We’ll also learn some algorithms such as K-means clustering and Principal Component Analysis.

Note that K-nearest neighbors and matrix factorization algorithms covered in the previous section can also be looked at as unsupervised learning algorithms for modeling similarity / relatedness between items.

List of Project Ideas

To round-up, we give an end-to-end example of applying ML for predicting whether or not a patient has diabetes. In addition using ML algorithms, the example goes through the various stages typical of the ML workflow, such as data exploration and interpreting the ML model.

Then, there is an article which contains a list of 10 project ideas (including links to datasets and suggested algorithms). You should pick one of these tasks and do at-least one full project on your own.

The last lesson is a summary of a brilliant paper by Professor Pedro Domingos. It discusses a number of key lessons ML practitioners have learned over the years. It’s a great way to end the course, touching upon various parts and discussing the relations between them. It is also essential wisdom to take with you as you carry on your ML journey!


© 2016-2022. All rights reserved.