Deep Learning Book Flashcards

1
Q

What are the three ingredients to machine learning?

A

1) Data (a set of historical examples)
2) A set of functions that the algorithm will search through to find the best match with the data.
3) Some measure of fitness that can be used to evaluate how well each candidate function matched the data.

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

Why is machine learning difficult?

A

1) Most data sets will include noise.
2) It’s often the case that the set of possible functions is larger than the set of examples in the dataset.

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

How do you overcome an ill-posed machine learning problem?

A

ill-posed- set of possible functions is greater than the number of examples

1) Gather more examples
2) use inductive bias’s

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

What is an inductive bias?

A

An assumption about the characteristics of the best function.

Example: if all the swans that you see in your life are white, you might assume that a general rule of thumb is that “all swans are white”

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

What is a function?

A

A deterministic mapping from a set of input values to one more more output values.

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

What is supervised learning? ( My definition)

A

Each example in the dataset is labeled with the expected output (or target) value. The algorithm uses the output values by comparing the outputs a function gives with the output values in the data set and using the difference (or error) to evaluate the fitness of the candidate function.

The algorithm compares info given from the labeled output and the functions output to determine how good the function is and how to make adjustments.

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

What is supervised learning? ( Books definition)

A

A form of machine learning where the goal is to learn a function that maps from a set of input attributes for an instance to an accurate estimate of the missing value for the target attribute of the same instance.

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

Target Attribute

A

In supervised machine learning, a target attribute is the attribute that the mode is trained to estimate the value of.

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

What is unsupervised learning?

A

A form of machine learning where the goal is to identify regularities, such as clusters of similar instances, in the data. Unlike supervised learning, there is no target attribute in an unsupervised learning task.

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

What is the measure of fitness?

A

It is a function that takes the outputs from a candidate function, generated when the machine learning algorithm applies the candidate function to the data, and compares these outputs with the data in some way.

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

What is reinforcement learning?

A

The goal is to enable an agent to learn a policy (function) on how it should act in a given environment. The agent learns in the environment and updates based on the reward of the result.

Example: should to program or the pawn or take the queen

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

What is a Neuron?

A

Is a simple model in its own right that maps from a set of inputs to an output.

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