7 Supervised Machine Learning

The third edition of Artificial Intelligence: foundations of computational agents, Cambridge University Press, 2023 is now available (including full text).

7.8 Learning as Refining the Hypothesis Space

So far, learning involves either choosing the best representation, such as the best decision tree or the best values for weights in a neural network, or predicting the value of the target features of a new case from a database of previous cases. This section considers a different notion of learning, namely learning as delineating those hypotheses that are consistent with the examples. Rather than choosing a hypothesis, the aim is to find a description of all hypotheses that are consistent with the data. This investigation will shed light on the role of a bias and provide a mechanism for a theoretical analysis of the learning problem.

We make three assumptions:

  • There is a single Boolean target feature, Y.

  • The hypotheses make definitive predictions, predicting true or false for each example, rather than probabilistic predictions.

  • There is no noise in the data.

Given these assumptions, it is possible to write a hypothesis in terms of a proposition, where the primitive propositions are assignments to the input features.

Example 7.25.

The decision tree of Figure 7.6 can be seen as a representation reads defined by the proposition

Reads^(e)Short(e)(New(e)Known(e)).

This is the prediction that the person read an article if and only if the article is short and either new or known.

The goal is to try to find a proposition on the input features that correctly classifies the training examples.

Example 7.26.

Consider a trading agent trying to infer which articles a user reads based on keywords for the article. Suppose the learning agent has the following data:

article Crime Academic Local Music Reads
a1 true false false true true
a2 true false false false true
a3 false true false false false
a4 false false true false false
a5 true true false false true

The aim is to learn which articles the user reads.

In this example, Reads is the target feature, and the aim is to find a definition such as

Reads^(e)Crime(e)(¬Academic(e)¬Music(e)).

This definition may be used to classify the training examples as well as future examples.

Hypothesis space learning assumes the following sets

  • I, the instance space, is the set of all possible examples.

  • , the hypothesis space, is a set of Boolean functions on the input features.

  • EI is the set of training examples. Values for the input features and the target feature are given for the training example.

If h and iI, then h(i) is the value that h predicts for i.

Example 7.27.

In Example 7.26, I is the set of the 25=32 possible examples, one for each combination of values for the features.

The hypothesis space H could be all Boolean combinations of the input features or could be more restricted, such as conjunctions or propositions defined in terms of fewer than three features.

In Example 7.26, the training examples are E={a1,a2,a3,a4,a5}. The target feature is Reads. Because the table specifies some of the values of this feature, and the learner will make predictions on unseen cases, the learner requires a bias. In hypothesis space learning, the bias is imposed by the hypothesis space.

Hypothesis h is consistent with a set of training examples E if the value predicted by h is the value of the target feature Y for each example in E. That is, if eE, h(e)=Y(e).

The problem in hypothesis space learning is to find the set of elements of that is consistent with all of the training examples.

Example 7.28.

Consider the data of Example 7.26, and suppose H is the set of conjunctions of literals. An example hypothesis in H that is consistent with the set {a1} that consists of a single example is Reads^(e)¬academic(e)music(e). This hypothesis means that the person reads an article if and only if the article is not academic and it is about music. This concept is not the target concept because it is inconsistent with {a1,a2}.