<< Chapter < Page Chapter >> Page >

Let's put all this together into a theorem.

Theorem. Let | H | = k , and let any m , δ be fixed. Then with probability at least 1 - δ , we have that

ε ( h ^ ) min h H ε ( h ) + 2 1 2 m log 2 k δ .

This is proved by letting γ equal the · term, using our previous argument that uniform convergence occurs with probability at least 1 - δ , and then noting that uniform convergence implies ε ( h ) is at most 2 γ higher than ε ( h * ) = min h H ε ( h ) (as we showed previously).

This also quantifies what we were saying previously saying about the bias/variance tradeoff in model selection. Specifically, suppose we have some hypothesis class H , and are considering switching to some much larger hypothesis class H ' H . If we switch to H ' , then the first term min h ε ( h ) can only decrease (since we'd then be taking a min over a larger set of functions). Hence,by learning using a larger hypothesis class, our “bias” can only decrease. However, if k increases, then the second 2 · term would also increase. This increase corresponds to our “variance” increasingwhen we use a larger hypothesis class.

By holding γ and δ fixed and solving for m like we did before, we can also obtain the following sample complexity bound:

Corollary. Let | H | = k , and let any δ , γ be fixed. Then for ε ( h ^ ) min h H ε ( h ) + 2 γ to hold with probability at least 1 - δ , it suffices that

m 1 2 γ 2 log 2 k δ = O 1 γ 2 log k δ ,

The case of infinite H

We have proved some useful theorems for the case of finite hypothesis classes. But many hypothesis classes, including any parameterized by real numbers(as in linear classification) actually contain an infinite number of functions. Can we prove similar results for this setting?

Let's start by going through something that is not the “right” argument. Better and more general arguments exist , but this will be useful for honing our intuitions about the domain.

Suppose we have an H that is parameterized by d real numbers. Since we are using a computer to represent real numbers, and IEEE double-precision floating point ( double 's in C) uses 64 bitsto represent a floating point number, this means that our learning algorithm, assuming we're using double-precision floating point, is parameterized by 64 d bits. Thus, our hypothesis class really consists of at most k = 2 64 d different hypotheses. From the Corollary at the end of the previous section, we therefore find that, to guarantee ε ( h ^ ) ε ( h * ) + 2 γ , with to hold with probability at least 1 - δ , it suffices that m O 1 γ 2 log 2 64 d δ = O d γ 2 log 1 δ = O γ , δ ( d ) . (The γ , δ subscripts are to indicate that the last big- O is hiding constants that may depend on γ and δ .) Thus, the number of training examples needed is at most linear in the parameters of the model.

The fact that we relied on 64-bit floating point makes this argument not entirely satisfying, but the conclusion is nonetheless roughly correct: If what we're going to do is try to minimize training error,then in order to learn “well” using a hypothesis class that has d parameters, generally we're going to need on the order of a linear number of training examples in d .

(At this point, it's worth noting that these results were proved for an algorithm that uses empirical risk minimization. Thus, while the linear dependence of samplecomplexity on d does generally hold for most discriminative learning algorithms that try to minimize trainingerror or some approximation to training error, these conclusions do not always apply as readily to discriminative learning algorithms. Giving good theoreticalguarantees on many non-ERM learning algorithms is still an area of active research.)

The other part of our previous argument that's slightly unsatisfying is that it relies on the parameterization of H . Intuitively, this doesn't seem like it should matter: We had written the classof linear classifiers as h θ ( x ) = 1 { θ 0 + θ 1 x 1 + θ n x n 0 } , with n + 1 parameters θ 0 , ... , θ n . But it could also be written h u , v ( x ) = 1 { ( u 0 2 - v 0 2 ) + ( u 1 2 - v 1 2 ) x 1 + ( u n 2 - v n 2 ) x n 0 } with 2 n + 2 parameters u i , v i . Yet, both of these are just defining the same H : The set of linear classifiers in n dimensions.

To derive a more satisfying argument, let's define a few more things.

Given a set S = { x ( i ) , ... , x ( d ) } (no relation to the training set) of points x ( i ) X , we say that H shatters S if H can realize any labeling on S . I.e., if for any set of labels { y ( 1 ) , ... , y ( d ) } , there existssome h H so that h ( x ( i ) ) = y ( i ) for all i = 1 , ... d .

Given a hypothesis class H , we then define its Vapnik-Chervonenkis dimension , written VC ( H ) , to be the size of the largest set that is shattered by H . (If H can shatter arbitrarily large sets, then VC ( H ) = .)

For instance, consider the following set of three points:

three points on a graph

Can the set H of linear classifiers in two dimensions ( h ( x ) = 1 { θ 0 + θ 1 x 1 + θ 2 x 2 0 } ) can shatter the set above? The answer is yes. Specifically, we see that, for any of the eight possiblelabelings of these points, we can find a linear classifier that obtains “zero training error” on them:

drawing different lines to break the three data points into different groups

Moreover, it is possible to show that there is no set of 4 points that this hypothesis class can shatter. Thus, the largest set that H can shatter is of size 3, and hence VC ( H ) = 3 .

Note that the VC dimension of H here is 3 even though there may be sets of size 3 that it cannot shatter. For instance, if we had a set of three pointslying in a straight line (left figure), then there is no way to find a linear separator for the labeling of the three points shown below (right figure):

three points in a line, second is broken up into different groups

In order words, under the definition of the VC dimension, in order to prove that VC ( H ) is at least d , we need to show only that there's at least one set of size d that H can shatter.

The following theorem, due to Vapnik, can then be shown. (This is, many would argue, the most important theorem in all of learning theory.)

Theorem. Let H be given, and let d = VC ( H ) . Then with probability at least 1 - δ , we have that for all h H ,

| ε ( h ) - ε ^ ( h ) | O d m log m d + 1 m log 1 δ .

Thus, with probability at least 1 - δ , we also have that:

ε ( h ^ ) ε ( h * ) + O d m log m d + 1 m log 1 δ .

In other words, if a hypothesis class has finite VC dimension, then uniform convergence occurs as m becomes large. As before,this allows us to give a bound on ε ( h ) in terms of ε ( h * ) . We also have the following corollary:

Corollary. For | ε ( h ) - ε ^ ( h ) | γ to hold for all h H (and hence ε ( h ^ ) ε ( h * ) + 2 γ ) with probability at least 1 - δ , it suffices that m = O γ , δ ( d ) .

In other words, the number of training examples needed to learn “well” using H is linear in the VC dimension of H . It turns out that, for “most” hypothesis classes, the VC dimension (assuming a “reasonable” parameterization) is also roughly linear in the number of parameters.Putting these together, we conclude that (for an algorithm that tries to minimize training error) the number of trainingexamples needed is usually roughly linear in the number of parameters of H .

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Machine learning. OpenStax CNX. Oct 14, 2013 Download for free at http://cnx.org/content/col11500/1.4
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Machine learning' conversation and receive update notifications?

Ask