Week 3 - Supervised Learning Flashcards

1
Q

What is classification supervised learning?

A

A function is created that has 2 possible outputs.

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

What is regression supervised learning?

A

A function is created that outputs a real number.

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

What form does the data need to be in for supervised learning?

A

Input-output pairs

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

How do you split up your data for supervised learning?

A

You use most of the data as training data, where you give the algorithm both the input and output. You then use a small amount of the data as test data, where you give the test algorithm an input and see what output it gives you.

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

What is square loss?

A

The difference between a predicted output and the actual output, squared.

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

What is a lost/cost function?

A

A function that when given a linear regression line and a set of data points, will output how well the line fits the data points.

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