Statistics Flashcards

1
Q

Covariance

A

Covariance is a measure of the joint variability of two random variables. It is positive when the values of the two variables increase or decrease together, negative when the values increase or decrease oppositely, or zero when the two variables are completely linearly uncorrelated.

Formula:

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

Pearson correlation coefficient

A

Pearson correlation coefficient measures the linear correlation between two random variables. It is the covariance normalized by the standard deviations of the two variables. It is 1 for a total positive linear correlation, 0 for no linear correlation, and -1 for a total negative linear correlation.

Formula:

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

Covariance matrix

A

Covariance matrix is a square matrix giving the covariances between each pair of elements of a random vector. The main diagonal contains the covariances of an element with itself (i.e. the variances).

Illustration:

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

Laplace Smoothing

A

Laplace smoothing (aka additive smoothing) is a technique used to smooth categorical data.

Example application in calculating the probabilities of word frequencies:

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

Parametric Model

A

A parametric model is a model with a fixed number of parameters regardless of the input size (i.e. number of training examples). As a consequence, the form of the learned function is predefined.

Linear regression and neural networks are examples of parametric models.

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

Non-parametric Model

A

A non-parametric model is a model whose number of parameters adapt to the input size (i.e. number of training examples). As a consequence, the form of the learned function is flexible.

K-Nearest Neighbors and Support Vector Machines are examples of non-parametric models.

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