Exercise: Implement deep networks for digit classification

From Ufldl

Jump to: navigation, search
(Step 3: Train the softmax classifier on the L2 features)
Line 36: Line 36:
=== Step 3: Train the softmax classifier on the L2 features ===
=== Step 3: Train the softmax classifier on the L2 features ===
-
Next, continue to forward propagate the L1 features through the second autoencoder (using <tt>feedForwardAutoencoder.m</tt>) to obtain the L2 hidden unit activations. These activations are then used to train the softmax classifier. You should be able to use <tt>softmaxTrain.m</tt> that you completed in [[Exercise:Softmax Regression]] to complete this part of the assignment.
+
Next, continue to forward propagate the L1 features through the second autoencoder (using <tt>feedForwardAutoencoder.m</tt>) to obtain the L2 hidden unit activations. These activations are then used to train the softmax classifier. You can either use <tt>softmaxTrain.m</tt> or directly use <tt>softmaxCost.m</tt> that you completed in [[Exercise:Softmax Regression]] to complete this part of the assignment.
=== Step 4: Implement fine-tuning ===
=== Step 4: Implement fine-tuning ===

Revision as of 05:50, 10 May 2011

Personal tools