Header Ads Widget

Restriction Biases and Preference Biases

Difference between the types of inductive bias exhibited by ID3 and by the CANDIDATE- ELIMINATION Algorithm.

ID3:

  • ID3 searches a complete hypothesis space
  • It searches incompletely through this space, from simple to complex hypotheses, until its termination condition is met
  • Its inductive bias is solely a consequence of the ordering of hypotheses by its search strategy. Its hypothesis space introduces no additional bias

CANDIDATE-ELIMINATION Algorithm:

  • The version space CANDIDATE-ELIMINATION Algorithm searches an incomplete hypothesis space
  • It searches this space completely, finding every hypothesis consistent with the training data.
  • Its inductive bias is solely a consequence of the expressive power of its hypothesis representation. Its search strategy introduces no additional bias


Preference bias – The inductive bias of ID3 is a preference for certain hypotheses over others (e.g., preference for shorter hypotheses over larger hypotheses), with no hard restriction on the hypotheses that can be eventually enumerated. This form of bias is called a preference bias or a search bias.

Restriction bias The bias of the CANDIDATE ELIMINATION algorithm is in the form of a categorical restriction on the set of hypotheses considered. This form of bias is typically called a restriction bias or a language bias.

Which type of inductive bias is preferred in order to generalize beyond the training data, a preference bias or restriction bias?

  • A preference bias is more desirable than a restriction bias, because it allows the learner to work within a complete hypothesis space that is assured to contain the unknown target function.
  • In contrast, a restriction bias that strictly limits the set of potential hypotheses is generally less desirable, because it introduces the possibility of excluding the unknown target function altogether.

Post a Comment

0 Comments