Descending Into ML Flashcards

1
Q

What is “Training” a model?

A

learning (determining) good values for all the weights and the bias from labeled examples.

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

What is “empirical risk minimization” ?

A

attempting to find a model that minimizes loss

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

What is “squared loss” ?

A

= the square of the difference between the label and the prediction
= (observation - prediction(x))2
= (y - y’)2

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

What is Mean square error (MSE) ?

A

the average squared loss per example over the whole dataset.

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

How to calculate MSE ?

A

sum up all the squared losses for individual examples and then divide by the number of examples:

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