3.1 Classification
To attemp classification, one method is to use linear regression and map all redictions greater than 0.5 as 1 and all less than 0.5 as a 0. However, this method doesn’t work well because classification is not actually a linear function.
The classification problem is just like the regression problem, except that the values we now want to predict take on only a small number of discrete values. For now, we will focus on the binart classification problem in which y can take on only two values, 0 and 1. (Most of what we say here will also generalize to the multiple-class case.)For instance, if we are trying to build a spam classifier for email, then x(i) x ( i ) may be some features of a piece of email, and y may be 1 if it is a piece of spam mail, and 0 otherwise. Hence, y∈{0,1} y ∈ { 0 , 1 } . 0 is also called the negative class, and 1 the positive class, and they are sometimes also denoted by the symbols “-” and “+”. Given x(i) x ( i ) , the corresponding y(i) y ( i ) is also called the label for the training example.
3.2 Hypothesis Representation
We could approach the classification problem ignoring the fact that y is discrete-valued, and use our old linear regression algorithm to try to predict y given x. However, it is easy to construct examples where this method performs very poorly. Intuitively, it also doesn’t make sense for hθ(x) h θ ( x ) to take values larger than 1 or smaller than 0 when we know that y∈{0,1} y ∈ { 0 , 1 } . To fix this, let’s change the form for our hypotheses hθ(x) h θ ( x ) to satisfy 0≤hθ(x)≤1 0 ≤ h θ ( x ) ≤ 1 . This is accomplished by plugging θTx θ T x into the Logistic Function.
Our new form uses the “Sigmoid Function,” also called the “Logistic Function”:
hθ(x)=g(θTx) h θ ( x ) = g ( θ T x )
z=θTx z = θ T x
g(z)=11+e(−z) g ( z ) = 1 1 + e ( − z )
The function g(z), shown here, maps any real number to the (0, 1) interval, making it useful for transforming an arbitrary-valued function into a function better suited for classification.
hθ(x) h θ ( x ) will give us the probability that our output is 1. For example, hθ(x)=0.7 h θ ( x ) = 0.7 gives us a probability of 70% that our output is 1. Our probability that our prediction is 0 is just the complement of our probability that it is 1 (e.g. if probability that it is 1 is 70%, then the probability that it is 0 is 30%).
hθ(x)=P(y=1|x;θ)=1−P(y=0|x;θ) h θ ( x ) = P ( y = 1 | x ; θ ) = 1 − P ( y = 0 | x ; θ )
P(y=0|x;θ)+P(y=1|x;θ)=1 P ( y = 0 | x ; θ ) + P ( y = 1 | x ; θ ) = 1
3.3 Decision Boundary
if our input to g is θT θ T , then that means:
hθ(x)==g(θTx)≥0.5 when θTx≥0 h θ ( x ) == g ( θ T x ) ≥ 0.5 when θ T x ≥ 0
The decision boundary is the line that separates the area where y = 0 and where y = 1. It is created by our hypothesis function.
Again, the input to the sigmoid function g(z) (e.g. θT θ T ) doesn’t need to be linear, and could be a function that describes a circle (e.g. z=θ0+θ1x21+θ2x22 z = θ 0 + θ 1 x 1 2 + θ 2 x 2 2 ) or any shape to fit our data.
3.4 Cost Function
We cannot use the same cost function that we use for linear regression because the Logistic Function will cause the output to be wavy, causing many local optima. In other words, it will not be a convex function.
Instead, our cost function for logistic regression looks like:
J(θ)=1m∑mi=1Cost(hθ(x(i)),y(i)) J ( θ ) = 1 m ∑ i = 1 m C o s t ( h θ ( x ( i ) ) , y ( i ) )
Cost(hθ(x),y)=−log(hθ(x)) C o s t ( h θ ( x ) , y ) = − l o g ( h θ ( x ) )
Cost(hθ(x),y)=−log(1−hθ(x)) C o s t ( h θ ( x ) , y ) = − l o g ( 1 − h θ ( x ) )
Note that writing the cost function in this way guarantees that J(θ) J ( θ ) is convex for logistic regression.
3.5 Simplified Cost Function and Gradient Descent
We can compress our cost function’s two conditional cases into one case:
Cost(hθ(x),y)=−ylog(hθ(x))−(1−y)log(1−hθ(x)) C o s t ( h θ ( x ) , y ) = − y l o g ( h θ ( x ) ) − ( 1 − y ) l o g ( 1 − h θ ( x ) )
We can fully write out our entire cost function as follows:
J(θ)=−1m∑mi=1[ylog(hθ(x))+(1−y)log(1−hθ(x))] J ( θ ) = − 1 m ∑ i = 1 m [ y l o g ( h θ ( x ) ) + ( 1 − y ) l o g ( 1 − h θ ( x ) ) ]
A vectorized implementation is:
h=g(Xθ) h = g ( X θ )
J(θ)=1m(−yTlog(h)−(1−y)Tlog(1−h)) J ( θ ) = 1 m ( − y T l o g ( h ) − ( 1 − y ) T l o g ( 1 − h ) )
Gradient Descent
We can work out the derivative part using calculus to get:
θj:=θj−αm∑mi=1(hθ(x(i))−y(i))x(i)j θ j := θ j − α m ∑ i = 1 m ( h θ ( x ( i ) ) − y ( i ) ) x j ( i )
Notice that this algorithm is identical to the one we used in linear regression. We still have to simultaneously update all values in theta.
A vectorized implementation is:
θ:=θ−αmXT(h−y) θ := θ − α m X T ( h − y )
3.6 Advanced Optimization
“Conjugate gradient”, “BFGS”, and “L-BFGS” are more sophisticated, faster ways to optimize θ θ that can be used instead of gradient descent. We suggest that you should not write these more sophisticated algorithms yourself (unless you are an expert in numerical computing) but use the libraries instead, as they’re already tested and highly optimized. Octave provides them.
We first need to provide a function that evaluates the following two functions for a given input value θ θ :
J(θ) J ( θ )
∂∂θjJ(θ) ∂ ∂ θ j J ( θ )
We can write a single function that returns both of these:
function [jVal, gradient] = costFunction(theta)
jVal = [...code to compute J(theta)...];
gradient = [...code to compute derivative of J(theta)...];
end
Then we can use octave’s “fminunc()” optimization algorithm along with the “optimset()” function that creates an object containing the options we want to send to “fminunc()”.
options = optimset('GradObj', 'on', 'MaxIter', 100);
initialTheta = zeros(2,1);
[optTheta, functionVal, exitFlag] = fminunc(@costFunction, initialTheta, options);
We give to the function “fminunc()” our cost function, our initial vector of theta values, and the “options” object that we created beforehand.
3.7 Multiclass Classification: One-vs-all
Now we will approach the classification of data when we have more than two categories. Instead of y = {0,1} we will expand our definition so that y = {0,1…n}.
Since y = {0,1…n}, we divide our problem into n+1 (+1 because the index starts at 0) binary classification problems; in each one, we predict the probability that ‘y’ is a member of one of our classes.
y∈0,1⋯n y ∈ 0 , 1 ⋯ n
h(0)θ(x)=P(y=0|x;θ) h θ ( 0 ) ( x ) = P ( y = 0 | x ; θ )
h(1)θ(x)=P(y=1|x;θ) h θ ( 1 ) ( x ) = P ( y = 1 | x ; θ )
h(n)θ(x)=P(y=n|x;θ) h θ ( n ) ( x ) = P ( y = n | x ; θ )
prediction=max(h(i)θ(x)) prediction = max ( h θ ( i ) ( x ) )
We are basically choosing one class and then lumping all the others into a single second class. We do this repeatedly, applying binary logistic regression to each case, and then use the hypothesis that returned the highest value as our prediction.
To summarize:
Train a logistic regression classifier hθ(x) h θ ( x ) for each class to predict the probability that y = i.
To make a prediction on a new x, pick the class that maximizes hθ(x) h θ ( x )
3.8 The Problem of Overfitting
Consider the problem of predicting y from
x∈R
x
∈
R
. The leftmost figure below shows the result of fitting a
y=θ0+θ1x
y
=
θ
0
+
θ
1
x
to a dataset. We see that the data doesn’t really lie on straight line, and so the fit is not very good.
Instead, if we had added an extra feature
x2
x
2
, and fit
y=θ0+θ1x+θ2x2
y
=
θ
0
+
θ
1
x
+
θ
2
x
2
, then we obtain a slightly better fit to the data (See middle figure). Naively, it might seem that the more features we add, the better. However, there is also a danger in adding too many features: The rightmost figure is the result of fitting a
5th
5
t
h
order polynomial
y=∑5j=0θjxj
y
=
∑
j
=
0
5
θ
j
x
j
. We see that even though the fitted curve passes through the data perfectly, we would not expect this to be a very good predictor of, say, housing prices
(y)
(
y
)
for different living areas
(x)
(
x
)
. Without formally defining what these terms mean, we’ll say the figure on the left shows an instance of underfitting—in which the data clearly shows structure not captured by the model—and the figure on the right is an example of overfitting.
Underfitting, or high bias, is when the form of our hypothesis function h maps poorly to the trend of the data. It is usually caused by a function that is too simple or uses too few features. At the other extreme, overfitting, or high variance, is caused by a hypothesis function that fits the available data but does not generalize well to predict new data. It is usually caused by a complicated function that creates a lot of unnecessary curves and angles unrelated to the data.
This terminology is applied to both linear and logistic regression. There are two main options to address the issue of overfitting:
1) Reduce the number of features:
- Manually select which features to keep.
- Use a model selection algorithm (studied later in the course).
2) Regularization
- Keep all the features, but reduce the magnitude of parameters
θj
θ
j
.
- Regularization works well when we have a lot of slightly useful features.
3.8.1 Cost Function
If we have overfitting from our hypothesis function, we can reduce the weight that some of the terms in our function carry by increasing their cost.
Say we wanted to make the following function more quadratic:
θ0+θ1x+θ2x2+θ3x3+θ4x4 θ 0 + θ 1 x + θ 2 x 2 + θ 3 x 3 + θ 4 x 4
We’ll want to eliminate the influence of θ3x3 θ 3 x 3 and θ4x4 θ 4 x 4 . Without actually getting rid of these features or changing the form of our hypothesis, we can instead modify our cost function:
minθ12m∑mi=1(hθ(x(i))−y(i))2+1000θ23+1000θ24 m i n θ 1 2 m ∑ i = 1 m ( h θ ( x ( i ) ) − y ( i ) ) 2 + 1000 θ 3 2 + 1000 θ 4 2
We’ve added two extra terms at the end to inflate the cost of θ3 θ 3 and θ4 θ 4 . Now, in order for the cost function to get close to zero, we will have to reduce the values of θ3 θ 3 and θ4 θ 4 to near zero. This will in turn greatly reduce the values of θ3x3 θ 3 x 3 and θ4x4 θ 4 x 4 in our hypothesis function. As a result, we see that the new hypothesis (depicted by the pink curve) looks like a quadratic function but fits the data better due to the extra small terms θ3x3 θ 3 x 3 and θ4x4 θ 4 x 4 .
We could also regularize all of our theta parameters in a single summation as:
minθ12m[∑mi=1(hθ(x(i))−y(i))2+λ∑nj=1θ2j] m i n θ 1 2 m [ ∑ i = 1 m ( h θ ( x ( i ) ) − y ( i ) ) 2 + λ ∑ j = 1 n θ j 2 ]
The λ λ , or lambda, is the regularization parameter. It determines how much the costs of our theta parameters are inflated.
Using the above cost function with the extra summation, we can smooth the output of our hypothesis function to reduce overfitting. If lambda is chosen to be too large, it may smooth out the function too much and cause underfitting. Hence, what would happen if λ=0 λ = 0 or is too small ?
3.8.2 Regularized Linear Regression
We can apply regularization to both linear regression and logistic regression. We will approach linear regression first.
Gradient Descent
We will modify our gradient descent function to separate out
θ0
θ
0
from the rest of the parameters because we do not want to penalize
θ0
θ
0
.
θ0:=θ0−α1m∑mi=1(hθ(x(i))−y(i))x(i)0 θ 0 := θ 0 − α 1 m ∑ i = 1 m ( h θ ( x ( i ) ) − y ( i ) ) x 0 ( i )
θj:=θj−α[1m∑mi=1(hθ(x(i))−y(i))x(i)j+λmθj]j∈1,2⋯n θ j := θ j − α [ 1 m ∑ i = 1 m ( h θ ( x ( i ) ) − y ( i ) ) x j ( i ) + λ m θ j ] j ∈ 1 , 2 ⋯ n
The term λmθj λ m θ j performs our regularization. With some manipulation our update rule can also be represented as:
θj:=θj(1−αλm)−α1m∑mi=1(hθ(x(i))−y(i))x(i)j θ j := θ j ( 1 − α λ m ) − α 1 m ∑ i = 1 m ( h θ ( x ( i ) ) − y ( i ) ) x j ( i )
The first term in the above equation, 1−αλm 1 − α λ m will always be less than 1. Intuitively you can see it as reducing the value of θj θ j by some amount on every update. Notice that the second term is now exactly the same as it was before.
Normal Equation
Now let’s approach regularization using the alternate method of the non-iterative normal equation.
To add in regularization, the equation is the same as our original, except that we add another term inside the parentheses:
θ=(XTX+λ⋅L)−1XTy θ = ( X T X + λ ⋅ L ) − 1 X T y
whereL=⎛⎝⎜⎜⎜⎜⎜⎜⎜011⋱1⎞⎠⎟⎟⎟⎟⎟⎟⎟ where L = ( 0 1 1 ⋱ 1 )
L is a matrix with 0 at the top left and 1’s down the diagonal, with 0’s everywhere else. It should have dimension (n+1)×(n+1). Intuitively, this is the identity matrix (though we are not including x0 x 0 ), multiplied with a single real number λ λ .
Recall that if m < n, then XTX X T X is non-invertible. However, when we add the term λ⋅L λ ⋅ L , then XTX+λ⋅L X T X + λ ⋅ L becomes invertible.
3.8.3 Regularized Logistic Regression
We can regularize logistic regression in a similar way that we regularize linear regression. As a result, we can avoid overfitting. The following image shows how the regularized function, displayed by the pink line, is less likely to overfit than the non-regularized function represented by the blue line:
Cost Function
Recall that our cost function for logistic regression was:
J(θ)=−1m∑mi=1[y(i)log(hθ(x(i)))+(1−y(i))log(1−hθ(x(i)))] J ( θ ) = − 1 m ∑ i = 1 m [ y ( i ) l o g ( h θ ( x ( i ) ) ) + ( 1 − y ( i ) ) l o g ( 1 − h θ ( x ( i ) ) ) ]
We can regularize this equation by adding a term to the end:
J(θ)=−1m∑mi=1[y(i)log(hθ(x(i)))+(1−y(i))log(1−hθ(x(i)))]+λ2m∑nj=1θ2j J ( θ ) = − 1 m ∑ i = 1 m [ y ( i ) l o g ( h θ ( x ( i ) ) ) + ( 1 − y ( i ) ) l o g ( 1 − h θ ( x ( i ) ) ) ] + λ 2 m ∑ j = 1 n θ j 2
The second sum, ∑nj=1θ2j ∑ j = 1 n θ j 2 means to explicitly exclude the bias term, θ0 θ 0 . I.e. the θ θ vector is indexed from 0 to n (holding n+1 values, θ0 θ 0 through θn θ n ), and this sum explicitly skips θ0 θ 0 , by running from 1 to n, skipping 0. Thus, when computing the equation, we should continuously update the two following equations: