1: Giving Computers the Ability to Learn From Data Flashcards

1
Q

Three types of machine learning

A

Unsupervised, Supervised, Reinforcement Learning

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What’s the main goal in supervised learning?

A

To learn a model from labeled training data that allows us to make predictions about unseen or future data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the two main subcategories of supervised learning?

A

Classification - output is label and regression - output is continuous value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the goal of classification?

A

To predict the categorical class labels of new instances based on past observations. Those class labels are discrete, unordered values that be understood as the group memberships of the instances.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Describe regression analysis.

A

We are given a number of predictor (explanatory) variables and a continuous response variable (outcome), and we try to find a relationship between those variables that allows us to predict an outcome.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What’s the goal of reinforcement learning?

A

To develop a system (agent) that improves its performance based on interactions with the environment. The current state of the environment typically also includes a so-called reward signal (related to supervised learning). However, the feedback is not the correct ground truth label or value, but a measure of how well the action was measured by a reward function. Through the interaction, an agent can then use reinforcement learning to learn a series of actions that maximizes this reward via an exploratory trial-and-error approach or deliberative planning.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Describe reinforcement learning diagram:

A

Agent – state –> Environment – Action –> && – Reward –> Agent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are two examples of unsupervised learning?

A

Clustering and Dimensionality Reduction for data compression.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Describe the four stages in a typical workflow diagram for using machine learning in predictive modeling

A

1) Preprocessing (Feature Extraction and Scaling, Feature Selection, Dimentionality Reduction, Sampling)
2) Learning (Model Selection, Cross-Validation, Performance Metrics, Hyperparameter Optimization)
3) Evaluation
4) Prediction

How well did you know this?
1
Not at all
2
3
4
5
Perfectly