What are principled ways for penalising complexity in practice?

post by Bucky · 2019-06-27T07:28:16.850Z · LW · GW · No comments

This is a question post.

Contents

  Answers
    53 johnswentworth
    13 SatvikBeri
    13 SoerenMind
    3 yagudin
None
No comments

Previously I asked about [LW · GW] Solomonoff induction but essentially I asked the wrong question. Richard_Kennaway pointed me in the direction of an answer to the question which I should have asked but after investigating I still had questions.

So:

If one has 2 possible models to fit to a data set, by how much should one penalise the model which has an additional free parameter?

A couple of options which I came across were:

AIC, which has a flat facter of e penalty for each additional parameter.

BIC, which has a factor of √n penalty for each additional parameter.

where n is the number of data points.

On the one hand having a penalty which increases with n makes sense - a useful additional parameter should be able to provide more evidence the more data you have. On the other hand, having a penalty which increases with n means your prior will be different depending on the number of data points which seems wrong.

So, count me confused. Maybe there are other options which are more helpful. I don't know if the answer is too complex for a blog post but, if so, any suggestions of good text books on the subject would be great.

EDIT: johnswentworth has written a sequence [? · GW] which expands on the answer which he gives below.

Answers

answer by johnswentworth · 2019-06-27T18:08:58.986Z · LW(p) · GW(p)

I keep meaning to write a post on this...

At least within Bayesian probability, there is a single unique unambiguously-correct answer to "how should we penalize for complexity?": the Bayes factor. The Bayes factor is Hard to compute in general, which is why there's a whole slew of of other numbers which approximate it in various ways.

Here's how Bayes factors work. Want to know whether model 1 or model 2 is more consistent with the data? Then compute and . Using Bayes' rule:

where Z is the normalizer. If we're just comparing two models, then we can get rid of that annoying Z by computing odds for the two models:

In English: posterior relative odds of the two models is equal to prior odds times the ratio of likelihoods. That likelihood ratio is the Bayes' factor: it directly describes the update in the relative odds of the two models, due to the data.

Example

20 coin flips yield 16 heads and 4 tails. Is the coin biased?

Here we have two models:

  • Model 1: coin unbiased
  • Model 2: coin has some unknown probability of coming up heads (we'll use a uniform prior on for simplicity; this is not a good idea in general)

The second model has one free parameter (the bias) which we can use to fit the data, but it’s more complex and prone to over-fitting. When we integrate over that free parameter, it will fit the data poorly over most of the parameter space - thus the "penalty" associated with free parameters in general.

In this example, the integral is exactly tractable (it's a dirichlet-multinomial model), and we get:

So the Bayes factor is (.048)/(.0046) ~ 10, in favor of a biased coin. In practice, I'd say unbiased coins are at least 10x more likely than biased coins in day-to-day life a priori, so we might still think the coin is unbiased. But if we were genuinely unsure to start with, then this would be pretty decent evidence in favor.

Approximation

Why is this hard to compute in general? Well, if the model has an m-dimensional vector of free parameters , then , which is an integral in m dimensions. That's not just NP-complete, it's #P-complete.

There's various ways to approximate that integral. The two most common are:

  • MCMC (see e.g. here for application to Bayes factors): main limitation is that MCMC gets finicky in high dimensions.
  • Laplace approximation around the maximum-likelihood point. Aside from the usual limitations of using a single maximum-likelihood point, main limitation is that we need the determinant of the Hessian, which takes somewhere between O(k) and O() to compute for most k-free-parameter models (depending on how clever we are with the linear algebra).

BIC

The BIC can be derived directly from the Laplace approximation. Laplace says:

where is the maximum likelihood point and k is the dimension of .

Notice that is the usual "score" of a model; the rest is what we can think of as a complexity penalty, and that's what the BIC will approximate. The main assumption is that scales with the number of data points N; this is trivial if the data points are iiid (given ), since in that case is a sum over data points.

Now for the trick: that's the only part of the Laplace approximation's "complexity penalty" which scales with the number of data points N. It scales in proportion to , since each of k dimensions of the determinant contributes a factor N. Take the log of the whole thing, and all the rest will be constants which are dominated by the term as N goes to infinity. And that's the BIC: log of the MAP probability, minus .

Finally, the important part: the main benefit of knowing all this is being able to predict when the BIC will and will not work well. If it's an approximation of Laplace, which is itself an approximation of the Bayes factor, then BIC will work well exactly when those approximations are accurate. In particular, BIC fails when the terms we ignored (i.e. ) are as large as or even larger than , i.e. the BIC itself.

comment by Sherrinford · 2019-06-29T11:25:52.917Z · LW(p) · GW(p)

Very helpful comment. But why the uniform prior, and not the bias that has the highest likelihood given the data? theta = 4/5 would give you a Bayes factor of 47, right?

Replies from: johnswentworth
comment by johnswentworth · 2019-06-29T17:15:22.160Z · LW(p) · GW(p)

First things first, keep in mind the thing we're actually interested in: P[model | data]. The Bayes factor summarizes the contribution of the data to that number, in a convenient and reusable way, but the Bayes factor itself is not what we really want to know.

In the example, one model is "unbiased coin", the other is "some unknown bias". The prior over the bias is our distribution on before seeing the data. Thus the name "prior". It's , not . Before seeing the data, we have no reason at all to think that 4/5 is special. Thus, a uniform prior. This all comes directly from applying the rules of probability:

If you stick strictly to the rules of probability itself, you will never find any reason to maximize anything. There is no built-in maximization anywhere in probability. There are lots of integrals (or sums, in the discrete case), and we usually approximate those integrals by maximizing things - but those are approximations, always. In particular, if you try to compute P[model | data], you will not find any maximization of anything - unless you introduce it to approximate an integral.

In fact, let's go ahead and write out the whole example in one place, just this once:

... and there we have it. The relative probability of each model, given the data, calculated from first principles, is No approximation (except maybe in the choice of the models themselves), no maximization.

Continuum of Models

We could imagine, rather than two models, a whole spectrum of models - one for each value. In that case, it's true that = 4/5 would have a Bayes factor of 47. However, = 4/5 would also have a prior probability of zero: there are infinitely many possibly values, and we don't have any reason to favor 4/5 a priori. To get nonzero , we'd have to consider a small window of width around 4/5, and then . Again, this all just comes directly from the rules of probability - and you'll notice that the prior has re-entered the picture, exactly the same as before, except now we're thinking of it as a prior density on the models parameterized by .

What's really interesting about this model is how we handle the unbiased coin hypothesis. = 4/5 exactly has prior 0, because there's a whole continuum of -values and no reason to favor one of them a priori. But there is reason to favor =1/2 a priori: that's the unbiased coin hypothesis. If we think there's an 80% chance that the coin is perfectly unbiased, then =1/2 needs to have prior probability 0.8. That implies that our prior involves a delta function , plus whatever prior distribution we have on all the other -values. (In practice, we probably think even "unbiased" coins have some tiny bias, so we'd have some very sharp peak in the prior around 1/2 rather than a true delta function.)

Why Not Maximize Likelihood?

The practical reason for integrating over a prior distribution, rather than just maximizing likelihood, is overfit. If we stick strictly to the rules of probability, without any approximation, then we will not ever overfit. Overfit comes from approximations, in particular maximum likelihood.

This example would take a lot longer to write up, but... consider the canonical overfit problem: you have a dozen x-y points, and try fitting polynomials of order 0, 1, 2, 3, and 4. The 4th-order polynomial has highest maximum likelihood, but it's obviously overfitting. Thing is, the 4th-order model only has high likelihood for some very specific coefficients - most possible coefficients for a 4th-order polynomial have low likelihood. So, when we integrate over all possible coefficient values, the 4th-order polynomial doesn't look so good.

That's an intuitive ad-hoc explanation, but more generally, we know that overfit must stem from somehow deviating from the exact rules of probability. Why? Because the rules of probability tell us exactly what we're able to figure out, given our information. If a probabilistic calculation is exact, and includes all of our information, then we should not be able to predict any way in which it's wrong - unless we use some additional information. (Note that this is a Bayesian principle; not everyone agrees with it, but oddly enough no counterexamples have stood the test of time.) In the case of overfit, we know that certain conclusions are usually wrong, without using any additional information - so it must have come from some approximation.

Learn More?

If you want to learn more, check out this book (or the free pdf hosted by the author's former university), especially chapters 1, 2, and 20.

comment by Bucky · 2019-06-30T21:44:37.387Z · LW(p) · GW(p)

Thanks for this. I’m trying to get an intuition on how this works.

My mental picture is to imagine the likelihood function with respect to theta of the more complex model. The simpler model is the equivalent of a square function with height of its likelihood and width 1.

The relative areas under the graphs reflect the likelihood of the models. So if picturing the relative maximum likelihoods and how sharp the peak is on the more complex model gives an impression of the Bayes factor.

Does that work? Or is there a better mental model?

Replies from: johnswentworth
comment by johnswentworth · 2019-06-30T22:44:35.276Z · LW(p) · GW(p)

It's kind of tricky to picture it in terms of areas, because the two models usually don't live in the same space - one is an integral over more dimensions than the other. You can sometimes shoehorn it into the same space, e.g. by imagining that the likelihood for one model is constant with respect to some of the 's - it sounds like that what's you're trying to do here. That's not wrong, and you can think of it that way if you want, but personally I find it a bit awkward.

Here's a similar (but hopefully more natural) intuition:

  • Pick a model
  • Generate a value at random from that model's prior
  • Compute the likelihood of the data given that value
  • Take the average likelihood from this process, and you have

Compare this to the traditional maximum-likelihood approach: max likelihood says "what's the highest likelihood which I could possibly assign to this data?", whereas the Bayes factor approach says "what's the average likelihood I'd assign to this data, given my prior knowledge?". It's analogous to the distinction between a maximax decision rule ("take the decision with the best available best-case outcome") and a Bayesian decision rule ("take the decision with the best available average outcome").

That said, the above intuition is still somewhat ad-hoc. Personally, I intuit Bayes factors with the same intuitions I use for any other probability calculations. It's just a natural application of the usual probability ideas to the question of "what's the right model, given my background knowledge and all this data?". In particular, the intuitions involved are:

  • Bayes' Rule
  • Gears-level understanding [LW · GW], usually manifesting as causal models [LW · GW]. In this case, the causal model is -> data, with the individual data points independent conditional on . I then reflexively think "if I knew the values of all the nodes in this causal model, then I could easily compute the probability of the whole thing" - i.e. I can easily compute .
  • Summing over unknown values: I need something like (in which I don't know theta), and it would be easy to compute if I knew theta. So, I break it into a sum over theta: . Intuitively, I'm considering all the possible ways the world could be, while still consistent with my model.

... and of course these are all standard probability-related reflexes with multiple possible intuitions underneath them.

answer by SatvikBeri · 2019-06-28T19:52:54.023Z · LW(p) · GW(p)

A different view is to look at the search process for the models, rather than the model itself. If model A is found from a process that evaluates 10 models, and model B is found from a process that evaluates 10,000, and they otherwise have similar results, then A is much more likely to generalize to new data points than B.

The formalization of this concept is called VC dimension and is a big part of Machine Learning Theory (although arguably it hasn't been very helpful in practice): https://en.wikipedia.org/wiki/Vapnik%E2%80%93Chervonenkis_dimension

comment by John_Maxwell (John_Maxwell_IV) · 2019-06-28T21:23:43.803Z · LW(p) · GW(p)

Is there a theoretical justification for using VC dimension as a basis for generalization, or is it treated as an axiomatic desideratum?

Replies from: SatvikBeri
comment by SatvikBeri · 2019-06-29T20:09:14.047Z · LW(p) · GW(p)

Yes, roughly speaking, if you multiply the VC dimension by n, then you need n times as much training data to achieve the same performance. (More precise statement here: https://en.wikipedia.org/wiki/Vapnik%E2%80%93Chervonenkis_dimension#Uses) There are also a few other bounds you can get based on VC dimension. In practice these bounds are way too large to be useful, but an algorithm with much higher VC dimension will generally overfit more.

Replies from: John_Maxwell_IV
comment by John_Maxwell (John_Maxwell_IV) · 2019-06-30T01:18:10.907Z · LW(p) · GW(p)

Oh yeah, thanks, I think I remember seeing that. Do you happen to know the assumptions that proof makes? I'm having a hard time finding it in Vapnik's textbook. I vaguely remember it assuming that the correct hypothesis is in our hypothesis class, which made it seem kind of uninteresting.

To be clear, I agree it's easier to overfit if you try lots of models, but my explanation of this would be more Bayesian than Vapnik's. (Maybe something like: If a researcher restricts themselves to only 10 models, they will choose 10 models they feel relatively optimistic about/assign a high prior probability to. A high prior with a high likelihood gives us better generalization than a low prior with a slightly higher likelihood; the posterior probability of the first model is greater.)

Replies from: SatvikBeri
comment by SatvikBeri · 2019-07-02T16:58:29.042Z · LW(p) · GW(p)

A good exposition of the related theorems is in Chapter 6 of Understanding Machine Learning (https://www.amazon.com/Understanding-Machine-Learning-Theory-Algorithms/dp/1107057132/ref=sr_1_1?crid=2MXVW7VOQH6FT&keywords=understanding+machine+learning+from+theory+to+algorithms&qid=1562085244&s=gateway&sprefix=understanding+machine+%2Caps%2C196&sr=8-1)

There are several related theorems. Roughly:

1. The error on real data will be similar to the error on the training set + epsilon, where epsilon is roughly proportional to (datapoints / VC dimension.) This is the one I linked above.

2. The error on real data will be similar to the error of the best hypothesis in the hypothesis class, with similar proportionality

3. Special case of 2 – if the true hypothesis is in the hypothesis class, then the absolute error will be < epsilon (since the absolute error is just the difference from the true, best hypothesis.)

3 is probably the one you're thinking of, but you don't need the hypothesis to be in the class.

answer by [deleted] · 2019-06-28T04:38:36.232Z · LW(p) · GW(p)

The exact Bayesian solution penalizes complex models as a side effect. Each model should have a prior over its parameters. The more complex model can fit the data better, so P(data | best-fit parameters, model) is higher. But the model gets penalized because P(best-fit parameters | model) is lower on the prior. Why? The prior is thinly spread over a higher dimensional parameter space so it is lower for any particular set of parameters. This is called "Bayesian Occam's razor".

answer by yagudin · 2019-07-02T08:02:15.142Z · LW(p) · GW(p)
If one has 2 possible models to fit a data set, by how much should one penalize the model which has an additional free parameter?

Penalization might not be necessary if your learning procedure is stochastic and favors simple explanations. I encourage you to take a look on the nice poster/paper «Deep learning generalizes because the parameter-function map is biased towards simple functions» (PAC-Bayesian learning theory + empirical intuitions).

No comments

Comments sorted by top scores.