coursera机器学习公开课笔记10: advice-for-applying-machine-learning

Note

This personal note is written after studying the opening course on the coursera website, Machine Learning by Andrew NG . And images, audios of this note all comes from the opening course.

01_evaluating-a-learning-algorithm

Evaluating a Hypothesis

Once we have done some trouble shooting for errors in our predictions by:

  • Getting more training examples
  • Trying smaller sets of features
  • Trying additional features
  • Trying polynomial features
  • Increasing or decreasing λ

    We can move on to evaluate our new hypothesis.

A hypothesis may have a low error for the training examples but still be inaccurate (because of overfitting). Thus, to evaluate a hypothesis, given a dataset of training examples, we can split up the data into two sets: a training set and a test set . Typically, the training set consists of 70 % of your data and the test set is the remaining 30 %.

The new procedure using these two sets is then:

  1. Learn Θ Θ and minimize Jtrain(Θ) J t r a i n ( Θ ) using the training set
  2. Compute the test set error Jtest(Θ) J t e s t ( Θ )

The test set error For linear regression: J_{test}(\Theta) = \dfrac{1}{2m_{test}} \sum_{i=1}^{m_{test}}(h_\Theta(x^{(i)}{test}) - y^{(i)}{test})^2$

For classification ~ Misclassification error (aka 0/1 misclassification error):

err(hΘ(x),y)={10if hΘ(x)0.5 and y=0 or hΘ(x)<0.5 and y=1otherwise e r r ( h Θ ( x ) , y ) = { 1 if  h Θ ( x ) ≥ 0.5   a n d   y = 0   o r   h Θ ( x ) < 0.5   a n d   y = 1 0 o t h e r w i s e

This gives us a binary 0 or 1 error result based on a misclassification. The average test error for the test set is:

Test Error=1mtesti=1mtesterr(hΘ(x(i)test),y(i)test) Test Error = 1 m t e s t ∑ i = 1 m t e s t e r r ( h Θ ( x t e s t ( i ) ) , y t e s t ( i ) )

This gives us the proportion of the test data that was misclassified.

Model Selection and Train/Validation/Test Sets

Just because a learning algorithm fits a training set well, that does not mean it is a good hypothesis. It could overfit and as a result your predictions on the test set would be poor. The error of your hypothesis as measured on the data set with which you trained the parameters will be lower than the error on any other data set.

Given many models with different polynomial degrees, we can use a systematic approach to identify the ‘best’ function. In order to choose the model of your hypothesis, you can test each degree of polynomial and look at the error result.

One way to break down our dataset into the three sets is:

  • ​ Training set: 60%
  • ​ Cross validation set: 20%
  • ​ Test set: 20%

We can now calculate three separate error values for the three different sets using the following method:

  1. ​ Optimize the parameters in Θ Θ using the training set for each polynomial degree.
  2. ​ Find the polynomial degree d with the least error using the cross validation set.
  3. ​ Estimate the generalization error using the test set with Jtest(Θ(d)) J t e s t ( Θ ( d ) ) , (d = theta from polynomial with lower error);

This way, the degree of the polynomial d has not been trained using the test set.

Training error:

Jtrain(θ)=12mi=1m(hθ(x(i))y(i))2 J t r a i n ( θ ) = 1 2 m ∑ i = 1 m ( h θ ( x ( i ) ) − y ( i ) ) 2

Cross Validation error:
Jcv(θ)=12mcvi=1m(hθ(x(i)cv)y(i)cv)2 J c v ( θ ) = 1 2 m c v ∑ i = 1 m ( h θ ( x c v ( i ) ) − y c v ( i ) ) 2

Test error:
Jcv(θ)=12mcvi=1m(hθ(x(i)cv)y(i)cv)2 J c v ( θ ) = 1 2 m c v ∑ i = 1 m ( h θ ( x c v ( i ) ) − y c v ( i ) ) 2

02_bias-vs-variance

Diagnosing Bias vs. Variance

In this section we examine the relationship between the degree of the polynomial d and the underfitting or overfitting of our hypothesis.

  • We need to distinguish whether bias or variance is the problem contributing to bad predictions.
  • High bias is underfitting and high variance is overfitting. Ideally, we need to find a golden mean between these two.

The training error will tend to decrease as we increase the degree d of the polynomial.

At the same time, the cross validation error will tend to decrease as we increase d up to a point, and then it will increase as d is increased, forming a convex curve.

coursera机器学习公开课笔记10: advice-for-applying-machine-learning_第1张图片

High bias (underfitting): both Jtrain(Θ) J t r a i n ( Θ ) and JCV(Θ) J C V ( Θ ) will be high. Also, JCV(Θ)Jtrain(Θ) J C V ( Θ ) ≈ J t r a i n ( Θ ) .

High variance (overfitting): Jtrain(Θ) J t r a i n ( Θ ) will be low and JCV(Θ) J C V ( Θ ) will be much greater than Jtrain(Θ) J t r a i n ( Θ ) .

The is summarized in the figure below:

Regularization and Bias/Variance

Note: [The regularization term below and through out the video should be λ2mnj=1θ2j λ 2 m ∑ j = 1 n θ j 2 and NOT λ2mmj=1θ2j λ 2 m ∑ j = 1 m θ j 2 ]

coursera机器学习公开课笔记10: advice-for-applying-machine-learning_第2张图片

In the figure above, we see that as λ λ increases, our fit becomes more rigid. On the other hand, as λ λ approaches 0, we tend to over overfit the data. So how do we choose our parameter λ λ to get it ‘just right’ ? In order to choose the model and the regularization term λ λ , we need to:

  1. Create a list of lambdas (i.e. λ{0,0.01,0.02,0.04,0.08,0.16,0.32,0.64,1.28,2.56,5.12,10.24} λ ∈ { 0 , 0.01 , 0.02 , 0.04 , 0.08 , 0.16 , 0.32 , 0.64 , 1.28 , 2.56 , 5.12 , 10.24 } );
  2. Create a set of models with different degrees or any other variants.
  3. Iterate through the λ λ s and for each λ λ go through all the models to learn some Θ Θ .
  4. Compute the cross validation error using the learned Θ Θ (computed with λ λ ) on the JCV(Θ) J C V ( Θ ) without regularization or λ=0 λ = 0 .
  5. Select the best combo that produces the lowest error on the cross validation set.
  6. Using the best combo Θ Θ and λ, apply it on Jtest(Θ) J t e s t ( Θ ) to see if it has a good generalization of the problem.

Learning Curves

Training an algorithm on a very few number of data points (such as 1, 2 or 3) will easily have 0 errors because we can always find a quadratic curve that touches exactly those number of points. Hence:

As the training set gets larger, the error for a quadratic function increases.

The error value will plateau out after a certain m, or training set size.

Experiencing high bias:

Low training set size : causes Jtrain(Θ) J t r a i n ( Θ ) to be low and JCV(Θ) J C V ( Θ ) to be high.

Large training set size : causes both Jtrain(Θ) J t r a i n ( Θ ) and JCV(Θ) J C V ( Θ ) to be high with Jtrain(Θ) J t r a i n ( Θ ) JCV(Θ) J C V ( Θ ) .

If a learning algorithm is suffering from high bias, getting more training data will not (by itself) help much.

coursera机器学习公开课笔记10: advice-for-applying-machine-learning_第3张图片

Experiencing high variance:

Low training set size : Jtrain(Θ) J t r a i n ( Θ ) will be low and JCV(Θ) J C V ( Θ ) will be high.

Large training set size: Jtrain(Θ) J t r a i n ( Θ ) increases with training set size and JCV J C V (\Theta) continues to decrease without leveling off. Also, Jtrain(Θ) J t r a i n ( Θ ) < JCV(Θ) J C V ( Θ ) but the difference between them remains significant.

If a learning algorithm is suffering from high variance, getting more training data is likely to help.

coursera机器学习公开课笔记10: advice-for-applying-machine-learning_第4张图片

Deciding What to Do Next Revisited

Our decision process can be broken down as follows:

  • Getting more training examples: Fixes high variance

  • Trying smaller sets of features: Fixes high variance

  • Adding features: Fixes high bias

  • Adding polynomial features: Fixes high bias

  • Decreasing λ: Fixes high bias

  • Increasing λ: Fixes high variance.

Diagnosing Neural Networks

  • A neural network with fewer parameters is prone to underfitting. It is also computationally cheaper.
  • A large neural network with more parameters is prone to overfitting. It is also computationally expensive. In this case you can use regularization (increase λ) to address the overfitting.

coursera机器学习公开课笔记10: advice-for-applying-machine-learning_第5张图片

Using a single hidden layer is a good starting default. You can train your neural network on a number of hidden layers using your cross validation set. You can then select the one that performs best.

Model Complexity Effects:

  • Lower-order polynomials (low model complexity) have high bias and low variance. In this case, the model fits poorly consistently.
  • Higher-order polynomials (high model complexity) fit the training data extremely well and the test data extremely poorly. These have low bias on the training data, but very high variance.
  • In reality, we would want to choose a model somewhere in between, that can generalize well but also fits the data reasonably well.

你可能感兴趣的:(机器学习)