Skip to content

Commit 45fedc7

Browse files
committed
Move softmax files into common for all problems.
1 parent 8208de7 commit 45fedc7

File tree

11 files changed

+7
-366
lines changed

11 files changed

+7
-366
lines changed

cnn_exercise/cnnExercise.m

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
addpath ../common/
2+
addpath ../common/fminlbfgs
3+
14
%% CS294A/CS294W Convolutional Neural Networks Exercise
25

36
% Instructions
@@ -214,7 +217,7 @@
214217
softmaxY = trainLabels;
215218

216219
options = struct;
217-
options.maxIter = 200;
220+
options.MaxIter = 200;
218221
softmaxModel = softmaxTrain(numel(pooledFeaturesTrain) / numTrainImages,...
219222
numClasses, softmaxLambda, softmaxX, softmaxY, options);
220223

cnn_exercise/softmaxPredict.m

Lines changed: 0 additions & 32 deletions
This file was deleted.

cnn_exercise/softmaxTrain.m

Lines changed: 0 additions & 47 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

softmax_exercise/softmaxCost.m

Lines changed: 0 additions & 53 deletions
This file was deleted.

stackedae_exercise/softmaxCost.m

Lines changed: 0 additions & 53 deletions
This file was deleted.

stackedae_exercise/softmaxPredict.m

Lines changed: 0 additions & 32 deletions
This file was deleted.

stackedae_exercise/softmaxTrain.m

Lines changed: 0 additions & 47 deletions
This file was deleted.

stackedae_exercise/stackedAEExercise.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
addpath ../common/
2+
addpath ../common/fminlbfgs
3+
14
%% CS294A/CS294W Stacked Autoencoder Exercise
25

36
% Instructions

0 commit comments

Comments
 (0)