Exercise:Self-Taught Learning

From Ufldl

Jump to: navigation, search
(Support Code/Data)
Line 3: Line 3:
In this exercise, we will use the self-taught learning paradigm with the sparse autoencoder and softmax classifier to build a classifier for handwritten digits.
In this exercise, we will use the self-taught learning paradigm with the sparse autoencoder and softmax classifier to build a classifier for handwritten digits.
-
In this context, the self-taught learning paradigm can be used as follows. First, the sparse autoencoder is trained on a unlabeled training dataset of images of handwritten digits. This produces feature detectors that correspond to the activation pattern for each hidden unit. The features learned are expected to be pen strokes to resemble segments of digits.  
+
You will be building upon your code from the earlier exercises. First, you will train your sparse autoencoder on an "unlabeled" training dataset of handwritten digits. This produces feature that are penstroke-like. We then extract these learned features from a labeled dataset of handwritten digits. These features will then be used as inputs to the softmax classifier that you wrote in the previous exercise.  
-
The sparse autoencoder is then used to trainsform the raw labeled training dataset into representation of features, which are then used to train train the softmax classifier. For each example in the the labeled training dataset, <math>\textstyle x^{(k)}</math>, forward propogation is used to is used to obtain the activation of the hidden units <math>\textstyle a^{(k)}</math>. The data point <math>\textstyle a^{(k)}</math> and its corresponding label is then used to train the softmax classifier. Finally, the test dataset is also transformed to hidden unit activations and passed to the softmax classifier to obtain predictions.
+
Concretely, for each example in the the labeled training dataset, <math>\textstyle x^{(k)}</math>, we forward propagate the example to obtain the activation of the hidden units <math>\textstyle a^{(2)}</math>. The data is now represented in term of <math>\textstyle a^{(2)}</math> used to train the softmax classifier.  
-
To demonstrate the effectiveness of this method, we will train the sparse autoencoder on an unlabeled data set comprised out of all the digits 0 to 9, and then test them on the digits 5 to 9. The purpose of this is to demonstrate that self-taught learning can be surprisingly effective in improving results even if some data set items do not fall within the classes of our classification task.
+
Finally, we also extract the same features from the test dataset to obtain predictions.
 +
 
 +
We will use the  the digits 5 to 9 as an "unlabeled" dataset. while the digits 0 to 4 are used as the labeled training set.  
=== Support Code/Data ===
=== Support Code/Data ===
Line 26: Line 28:
Download and decompress <tt>[http://ufldl.stanford.edu/wiki/resources/stl_exercise.zip stl_exercise.zip]</tt>, which contains starter code for this exercise. Additionally, you will need to download the datasets from the MNIST Handwritten Digit Database for this project.
Download and decompress <tt>[http://ufldl.stanford.edu/wiki/resources/stl_exercise.zip stl_exercise.zip]</tt>, which contains starter code for this exercise. Additionally, you will need to download the datasets from the MNIST Handwritten Digit Database for this project.
-
 
-
To separate the the cases, you will need to fill in <tt>filterData.m</tt>, which should return a subset of the data set containing examples with labels within a certain bound. After implementing this function, run this step. To test your function, the script will output the number of examples in the supervised training and the STL training data set, which should be 60000 and 30596 respectively.
 
===Step Two: Train the sparse autoencoder===
===Step Two: Train the sparse autoencoder===
-
Next we will train the input data set on the sparse autoencoder, using the same <tt>sparseAutoencoderCost.m</tt> function from the previous assignments. (Use the frameworks from previous assignments to ensure that your code is working and vectorized, as no testing facilities are provided in this assignment.) After doing so, running the training step should take about half an hour (on a reasonably fast computer). When it is completed, a visualization of pen strokes should be displayed.
+
Next, we will train the unlabeled dataset on the sparse autoencoder, using the same <tt>sparseAutoencoderCost.m</tt> function from the previous assignments. (Use the frameworks from previous assignments to ensure that your code is working and vectorized.) The training step should take less than 20 minutes (on a reasonably fast computer). When it is completed, a visualization of pen strokes should be displayed.
-
 
+
-
Hint: This step takes a very long time, so you might want to avoid running it on subsequent trials! To do so, uncomment the lines containing the function <tt>save(...);</tt>, or run the save function from the command line. In future trials, you may skip the training set and load the save weights from disk.
+
[[File:selfTaughtFeatures.png]]
[[File:selfTaughtFeatures.png]]
-
===Step Three: Training the logistic regression model===
+
The features learned by the sparse autoencoder should correspond to penstrokes.
-
After the sparse autoencoder is trained, we can use it to detect pen strokes in images. To do so, you will need to be able to save the sparse autoencoder function to output its hidden unit activation.
+
===Step Three: Extracting features===
-
Fill in <tt>feedForwardSparseAutoencoder.m</tt> to produce a matrix whose columns correspond to activation of the hidden layer for each example i.e. the vector <math>a^{(2)}</math> corresponding to activation of layer <math>L_{2}</math>.
+
After the sparse autoencoder is trained, we can use it to extract features from the handwritten digit images.  
-
After doing so, this step will use your modified function to convert the raw image data to feature unit activations. It will then train the softmax regression model on the hidden unit activation and labels with <tt>softmaxTrain.m</tt>.
+
Complete <tt>feedForwardAutoencoder.m</tt> to produce a matrix whose columns correspond to activation of the hidden layer for each example i.e. the vector <math>a^{(2)}</math> corresponding to activation of layer 2.
 +
 
 +
After doing so, this step will use your modified function to convert the raw image data to feature unit activations.  
===Step Four: Training and testing the logistic regression model===
===Step Four: Training and testing the logistic regression model===
-
After completing these steps, running the entire script in <tt>stlExercise.m</tt> will use your sparse autoencoder to train the logistic model, then measure how well this system performs on the test set. Statistics about the model will be displayed afterwards. If you've done all the steps correctly, you should get an accuracy of about 98% percent.
+
In this step, you should use your code from the softmax exercise (<tt>softmaxTrain.m</tt>) to train the softmax classifier using the training features (<tt>trainFeatures</tt>) and labels (<tt>trainLabels</tt>).
 +
 
 +
===Step Five: Classifying on the test set===
 +
 
 +
Finally, complete the code to make predictions on the test set (<tt>testFeatures</tt>) and see how your learned features perform! If you've done all the steps correctly, you should get an accuracy of about 98% percent.
[[Category:Exercises]]
[[Category:Exercises]]

Revision as of 05:05, 7 May 2011

Personal tools