Machine Learning

Examples

Overview

Supervised Machine Learning

Supervised learning is used for many business applications from spam filters to movie recommendations. We looked at the two broad categories of supervised machine learning:

  • Classification

  • Regression

Deep learning can be used within supervised machine learning to create techniques that are better at image recognition or identifying when a movie was created based on the video footage.

Unsupervised Machine Learning

Objective is to learn about how the data is organized and which features tell us how the data is organized.

Unsupervised techniques are used for business applications from figuring out market segments to again building recommendation engines. There are a lot of ways you can build recommendation engines! But more of that will be shown in term 2.

These two techniques (supervised and unsupervised) will be the main techniques focused on in this term. You will also use deep learning as a supervised learning technique for image recognition.

Examples are clustering, principle components.

Challenge - it's hard to know how well you are doing.

Unsupervised learning is an important preprocessor for supervised learning. Often its useful to organize features, and choose them as input for supervised learning.

It's also much easier to collect this data.

Reinforcement Learning

The final type of machine learning, reinforcement learning, has recently been gaining a lot of traction, but still is limited in its use cases related to many business use cases. There are a number of obstacles in training these algorithms, and the approaches are not as streamlined as the other approaches you will see in this term.

With that being said, recent publicity in reinforcement learning has come from AlphaGo and autonomous vehicles. Additionally, reinforcement learning is often used in gaming agents like you see in Open AI Gym.

This program will not have any applications of reinforcement learning, because their use cases are not often used within common data science applications.

Representation Learning

Ex: autoencoders, but not necessarily deep because it will encode in 1 layer and decode in the other layer

Deep Learning

Is a multi layer representation learning.

Can be used for supervised, unsupervised and reinforcement learning.

Barriers:

  • You need enough data.

  • You must have the computing power.

  • You won't understand why certain decisions are being made.

Last updated