<< Chapter < Page | Chapter >> Page > |
Let's start by talking about a few examples of supervised learning problems. Suppose we have a dataset giving the living areas and prices of 47 houses fromPortland, Oregon:
Living area (feet ) | Price (1000$s) |
2104 | 400 |
1600 | 330 |
2400 | 369 |
1416 | 232 |
3000 | 540 |
We can plot this data:
Given data like this, how can we learn to predict the prices of other houses in Portland, as a function of the size of their living areas?
To establish notation for future use, we'll use to denote the “input” variables (living area in this example), also called input features , and to denote the “output” or target variable that we are trying to predict (price). A pair is called a training example , and the dataset that we'll be using to learn—a list of training examples —is called a training set . Note that the superscript “ ” in the notation is simply an index into the training set, and has nothing to do with exponentiation. We will also use denote the space of input values, and the space of output values. In this example, .
To describe the supervised learning problem slightly more formally, our goal is, given a training set, to learn a function so that is a “good” predictor for the corresponding value of . For historical reasons, this function is called a hypothesis . Seen pictorially, the process is thereforelike this:
When the target variable that we're trying to predict is continuous, such as in our housing example, we call the learning problem a regression problem. When can take on only a small number of discrete values (such as if, given the living area,we wanted to predict if a dwelling is a house or an apartment, say), we call it a classification problem.
To make our housing example more interesting, let's consider a slightly richer dataset in which we also know the number of bedrooms in each house:
Living area (feet ) | #bedrooms | Price (1000$s) |
2104 | 3 | 400 |
1600 | 3 | 330 |
2400 | 3 | 369 |
1416 | 2 | 232 |
3000 | 4 | 540 |
Here, the 's are two-dimensional vectors in . For instance, is the living area of the -th house in the training set, and is its number of bedrooms. (In general, when designing a learning problem, it will be up to you to decide what features to choose, so if youare out in Portland gathering housing data, you might also decide to include other features such as whether each house has a fireplace, the number ofbathrooms, and so on. We'll say more about feature selection later, but for now let's take the features as given.)
To perform supervised learning, we must decide how we're going to represent functions /hypotheses in a computer. As an initial choice, let's say we decide to approximate as a linear function of :
Here, the 's are the parameters (also called weights ) parameterizing the spaceof linear functions mapping from to . When there is no risk of confusion, we will drop the subscript in , and write it more simply as . To simplify our notation, we also introduce the convention of letting (this is the intercept term ), so that
Notification Switch
Would you like to follow the 'Machine learning' conversation and receive update notifications?