Common ML Problems Flashcards

1
Q

What is Machine Learning?

A

ML is the process of training a piece of software, called a model, to make useful predictions using a data set.

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

What is a Model?

A

The representation of what a machine learning system has learned from the training data

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

What is an example?

A

One row of a dataset. An example contains one or more features and possibly a label.

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

What is a feature?

A

An input variable used in making predictions.

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

ML problems fall along a spectrum of supervision between _____

A

supervised and unsupervised learning.

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

What is a label?

A

In supervised learning, the “answer” or “result” portion of an example.

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

What is training?

A

The process of determining the ideal parameters comprising a model.

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

What is Supervised Learning?

A

Supervised learning is a type of ML where the model is provided with labeled training data.

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

Supervised machine learning finds patterns ___

A

between data and labels that can be expressed mathematically as functions.

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

Given an input feature, you are telling the system ___

A

what the expected output label is, thus you are supervising the training.

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

What is the goal of unsupervised learning?

A

the goal is to identify meaningful patterns in the data.

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

In unsupervised learning the machine must __

A

learn from an unlabeled data set. In other words, the model has no hints how to categorize each piece of data and must infer its own rules for doing so.

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

What is a bias?

A

Stereotyping, prejudice or favoritism towards some things, people, or groups over others. These biases can affect collection and interpretation of data, the design of a system, and how users interact with a system.

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

What is Reinforcement Learning (RL)?

A

is a computational approach to learning whereby an agent tries to maximize the total amount of reward it receives when interacting with a complex, uncertain environment.
(Think of psychology)

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

What are the types of ML problems?

A
  1. Classification
  2. Regression
  3. Clustering
  4. Association Rule Learning
  5. Structured Output
  6. Ranking
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Which ML problem is an example of unsupervised learning?

A

Clustering

Association Rule Learning