RMSE AND MSE Flashcards

1
Q

use of performance metrics

A

Performance metrics like classification accuracy and root mean squared error can give you a clear objective idea of how good a set of predictions is

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

objective function

A

All the algorithms in machine learning rely on minimizing or maximizing a function, which we call “objective function”.

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

loss functions

A

The group of functions that are minimized are called “loss functions”
- A loss function is a measure of how good a prediction model does in terms of being able to predict the expected outcome.

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

gradient descent

A

A most commonly used method of finding the minimum point of function is “gradient descent”.

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

Loss functions can be broadly categorized into 2 types:

A

Classification and Regression Loss.

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

Regression functions

A

predict a quantity

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

classification functions

A

predict a label

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

RMSE (Root Mean Squared Error)

A

one of the methods to determine the accuracy of our model in predicting the target values.In machine Learning when we want to look at the accuracy of our model we take the root mean square of the error that has occurred between the test values and the predicted values mathematically

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

MSE (Mean Squared Error)

A

Mean Square Error (MSE) is the most commonly used regression loss function.
MSE is the sum of squared distances between our target variable and predicted values

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

Why use mean squared error

A

MSE is sensitive towards outliers and given several examples with the same input feature values, the optimal prediction will be their mean target value. This should be compared with Mean Absolute Error, where the optimal prediction is the median. MSE is thus good to use if you believe that your target data, conditioned on the input, is normally distributed around a mean value, and when it’s important to penalize outliers extra much.

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

When to use mean squared error

A

Use MSE when doing regression, believing that your target, conditioned on the input, is normally distributed, and want large errors to be significantly (quadratically) more penalized than small ones.

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

Classification loss

A

log loss, focal loss, KL Divergence/Relative Entropy, Exponential loss, Hinge loss

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

Regression loss

A

MSE loss/quadratic loss, Mean Absolute error, Log cosh loss, Huber loss/Smooth Mean Absolute error, quantile loss

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