read

In this post I go into details of how statistical learning frames the relationship between out-of-sample and within-sample fit. I also connect it with the familiar idea of degrees of freedom in linear regression, which every student of econometrics encounters.

This is the mathy cousin of the post Econometrics and Machine Learning: objectives and comparative advantages


The big picture is that, for any model

After you fit a model with data, it’s easy to calculate the within-sample prediction error, but what we really want is a measure of how our model would do when encountering new data (i.e. the real prediction error). To do this, we need a way to estimate how optimistic is our model. It turns out that optimism has to do with the complexity of the model:

In other words, if a model is very complex, the within-sample prediction record of it will be too optimistic and, hence, a bad measure of how the model would do with a new sample.

Let’s see the mathematical details. For the rest of the post, the notation will closely follow Chapter 7 of Elements of Statistical Learning.

Let be any loss function (quadratic would do), that tells us how upset we become when our target is far from our prediction .

To fit the model, we are given a training set and we obtain

The true error of a model is:

The in indicates that this is a new data point and wasn’t used for training/estimating the model. The true error of a model is how good our prediction is when we apply the model to new data.

Sometimes it’s easier to work with the expected (true) error, which is an average over all training sets:

Note that this is the true error. On the other hand, we have the more mundane training error (or within-sample prediction error). We can also characterize it as the loss function over the training set (i.e., the data points we use to train the model):

will generally underestimate the true error. This makes sense: if you use tons of parameters, you’re bound to have great within-sample prediction (i.e. low training error), but your out-of-sample error will be much larger.

It would be great to get an expression for the difference between and , but it seems it’s not that easy. Instead of , our stats friends turn to something related1

this is very similar to the out of sample error , but not quite. measures the error over new and new . The , instead, measures the error when we observe new response values at the original training points .

With this measure in hand we can define optimism as the difference

We’ll use a related concept: the average optimism, taken over training sets:

The size of gives us an idea of how optimistic our within-sample fit is: Will the within-sample value be a good approximation for our out-of-sample fit?

This optimism is connected with the complexity of the model, the degrees of freedom and the number of parameters we use. Students of linear regression know by heart that, with regressors, the degrees of freedom left from a regression is . Once again, The intuition is that the more complicated our model is, the less we should trust the in sample fit as a measure of out of sample fit.

I will show that can be understood as a general concept that can be linked with the expression for Least Squares, but can also be used for other types of estimation techniques, including non-linear or those lacking closed form solutions.

I’ll show this in two steps

You can find the derivation details below, but here is the summary

  1. For some common loss functions (squared error in particular) the average optimism of an estimator can be shown to be:

    We can modify this expression a bit to get a general definition of degrees of freedom:

    The is just a normalization, but the real juice is in .

    There’s nothing wrong in using to predict . In fact, not using it would mean we are throwing away valuable information. However the more we depend on the information contained in to come up with our prediction, the more overly optimistic our estimator will be. In the limit, if is just , you’ll have perfect in sample prediction (), but we’re pretty sure the out-of-sample prediction is gonna be bad. In this case (it’s easy to check by yourself), .

  2. We can show that in the case of linear regression the general definition of degrees of freedom turns out to be our familiar !

    This comes from


a

This step has somewhat painful algebra, but it’s pretty straightforward if we are careful with the notation.

Remember that, by definition, the average optimism is:

Now use a quadratic loss function and expand the squared terms:

use to replace:

To finish, note that , so that:

b

Remember the relevant part of the degrees of freedom expression comes from .

We can use the matrix notation for to write

where is the trace of a matrix.

Remember everything is conditioned in (we are using the old training points), but is still random (we are waiting for new values).

In linear regression the predicted are written .

Then:

where $k$ is the number of regressors in or, in linear algebra terms, the number of (independent) columns in

The (generalized) degrees of freedom formula is normalized by , so we end up getting:

If you care about the average optimism, in this case it will be:

Check this nice handout by Ryan Tishbirani for more details and intuition on the concept of degrees of freedom.

  1. This is called the in-sample error, not to be confused with the within-sample, which is the way I’ve called the training error. 

Blog Logo

Cristian Dagnino J.


Published

Image

Incentive Compatible

A journal about my adventures on the internet and the amazing things I found there -- Random comments on economics, data analysis and graphs with nice colors.

Back to Overview