Kalpana Kalpana (Editor)

Occam learning

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Occam learning

In computational learning theory, Occam learning is a model of algorithmic learning where the objective of the learner is to output a succinct representation of received training data. This is closely related to probably approximately correct (PAC) learning, where the learner is evaluated on its predictive power of a test set.

Contents

Occam learnability implies PAC learning, and for a wide variety of concept classes, the converse is also true: PAC learnability implies Occam learnability.

Introduction

Occam Learning is named after Occam's razor, which is a principle stating that, given all other things being equal, a shorter explanation for observed data should be favored over a lengthier explanation. The theory of Occam learning is a formal and mathematical justification for this principle. It was first shown by Blumer, et al. that Occam learning implies PAC learning, which is the standard model of learning in computational learning theory. In other words, parsimony (of the output hypothesis) implies predictive power.

Definition of Occam learning

The succinctness of a concept c in concept class C can be expressed by the length s i z e ( c ) of the shortest bit string that can represent c in C . Occam learning connects the succinctness of a learning algorithm's output to its predictive power on unseen data.

Let C and H be concept classes containing target concepts and hypotheses respectively. Then, for constants α 0 and 0 β < 1 , a learning algorithm L is an ( α , β ) -Occam algorithm for C using H if, given a set S of m samples labeled according to a concept c C , L outputs a hypothesis h H such that

  • h is consistent with c on S (that is, h ( x ) = c ( x ) , x S ), and
  • s i z e ( h ) ( n s i z e ( c ) ) α m β
  • where n is the maximum length of any sample x S . An Occam algorithm is called efficient if it runs in time polynomial in n , m , and s i z e ( c ) . We say a concept class C is Occam learnable with respect to a hypothesis class H if there exists an efficient Occam algorithm for C using H .

    The relation between Occam and PAC learning

    Occam learnability implies PAC learnability, as the following theorem of Blumer, et al. shows:

    Theorem (Occam learning implies PAC learning)

    Let L be an efficient ( α , β ) -Occam algorithm for C using H . Then there exists a constant a > 0 such that for any 0 < ϵ , δ < 1 , for any distribution D , given m a ( 1 ϵ log 1 δ + ( ( n s i z e ( c ) ) α ) ϵ ) 1 1 β ) samples drawn from D and labelled according to a concept c C of length n bits each, the algorithm L will output a hypothesis h H such that e r r o r ( h ) ϵ with probability at least 1 δ .

    Here, e r r o r ( h ) is with respect to the concept c and distribution D . This implies that the algorithm L is also a PAC learner for the concept class C using hypothesis class H . A slightly more general formulation is as follows:

    Theorem (Occam learning implies PAC learning, cardinality version)

    Let 0 < ϵ , δ < 1 . Let L be an algorithm such that, given m samples drawn from a fixed but unknown distribution D and labeled according to a concept c C of length n bits each, outputs a hypothesis h H n , m that is consistent with the labeled samples. Then, there exists a constant b such that if log | H n , m | b ϵ m log 1 δ , then L is guaranteed to output a hypothesis h H n , m such that e r r o r ( h ) ϵ with probability at least 1 δ .

    While the above theorems show that Occam learning is sufficient for PAC learning, it doesn't say anything about necessity. Board and Pitt show that, for a wide variety of concept classes, Occam learning is in fact necessary for PAC learning. They proved that for any concept class that is polynomially closed under exception lists, PAC learnability implies the existence of an Occam algorithm for that concept class. Concept classes that are polynomially closed under exception lists include Boolean formulas, circuits, deterministic finite automata, decision-lists, decision-trees, and other geometrically-defined concept classes.

    A concept class C is polynomially closed under exception lists if there exists a polynomial-time algorithm A such that, when given the representation of a concept c C and a finite list E of exceptions, outputs a representation of a concept c C such that the concepts c and c agree except on the set E .

    Proof that Occam learning implies PAC learning

    We first prove the Cardinality version. Call a hypothesis h H bad if e r r o r ( h ) ϵ , where again e r r o r ( h ) is with respect to the true concept c and the underlying distribution D . The probability that a set of samples S is consistent with h is at most ( 1 ϵ ) m , by the independence of the samples. By the union bound, the probability that there exists a bad hypothesis in H n , m is at most | H n , m | ( 1 ϵ ) m , which is less than δ if log | H n , m | O ( ϵ m ) log 1 δ . This concludes the proof of the second theorem above.

    Using the second theorem, we can prove the first theorem. Since we have a ( α , β ) -Occam algorithm, this means that any hypothesis output by L can be represented by at most ( n s i z e ( c ) ) α m β bits, and thus log | H n , m | ( n s i z e ( c ) ) α m β . This is less than O ( ϵ m ) log 1 δ if we set m a ( 1 ϵ log 1 δ + ( ( n s i z e ( c ) ) α ) ϵ ) 1 1 β ) for some constant a > 0 . Thus, by the Cardinality version Theorem, L will output a consistent hypothesis h with probability at least 1 δ . This concludes the proof of the first theorem above.

    Improving sample complexity for common problems

    Though Occam and PAC learnability are equivalent, the Occam framework can be used to produce tighter bounds on the sample complexity of classical problems including conjunctions, conjunctions with few relevant variables, and decision lists.

    Extensions

    Occam algorithms have also been shown to be successful for PAC learning in the presence of errors, probabilistic concepts, function learning and Markovian non-independent examples.

    References

    Occam learning Wikipedia