Skip to content

Commit

Permalink
fixed a bad match of a Jenkins rule for 01_ MNIST
Browse files Browse the repository at this point in the history
  • Loading branch information
frankseide committed Jun 10, 2016
1 parent cb05e2b commit 38a1cc8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Examples/Image/MNIST/Config/01_OneHidden.cntk
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ train = [
ce = CrossEntropyWithSoftmax (labels, z)
errs = ErrorPrediction (labels, z)

# set top5errs as an evaluation node to compute the top-5 error rate
# set top5Errs as an evaluation node to compute the top-5 error rate
# This is not marked tag="evaluation" since expensive during training.
# We explicitly select it as an output node in the "test" command.
top5errs = ErrorPrediction (labels, z, topN=5)
top5Errs = ErrorPrediction (labels, z, topN=5)

# declare special nodes
featureNodes = (features)
Expand Down Expand Up @@ -108,7 +108,7 @@ test = [
action = "test"
minibatchSize = 1024

evalNodeNames = errs:top5errs
evalNodeNames = errs:top5Errs

reader = [
readerType = "CNTKTextFormatReader"
Expand Down
2 changes: 1 addition & 1 deletion Examples/Image/MNIST/Config/01_OneHidden.ndl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ DNN = [

ce = CrossEntropyWithSoftmax(labels, ol)
errs = ErrorPrediction(labels, ol)
top5errs = ErrorPrediction(labels, ol, Const(5), tag="eval") # only used in testing
top5Errs = ErrorPrediction(labels, ol, Const(5), tag="eval") # only used in testing

# Special Nodes
FeatureNodes = (features)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ Memory Sharing Structure:
0x7f0d4bd02f98: {[features Value[784 x *1]] }
0x7f0d4bd03c78: {[h1.W Value[200 x 784]] }

05/13/2016 15:10:10: Final Results: Minibatch[1-10]: errs = 7.140% * 10000; top5errs = 0.420% * 10000; ce = 0.25287636 * 10000; perplexity = 1.28772405
05/13/2016 15:10:10: Final Results: Minibatch[1-10]: errs = 7.140% * 10000; top5Errs = 0.420% * 10000; ce = 0.25287636 * 10000; perplexity = 1.28772405

05/13/2016 15:10:10: Action "test" complete.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ Memory Sharing Structure:
00000078767795C0: {[h1.y Value[200 x 1 x *1]] }
00000078767797A0: {[featScaled Value[784 x 1 x *1]] }

05/13/2016 08:16:11: Final Results: Minibatch[1-10]: errs = 7.460% * 10000; top5errs = 0.440% * 10000; ce = 0.26425332 * 10000; perplexity = 1.30245809
05/13/2016 08:16:11: Final Results: Minibatch[1-10]: errs = 7.460% * 10000; top5Errs = 0.440% * 10000; ce = 0.26425332 * 10000; perplexity = 1.30245809

05/13/2016 08:16:11: Action "test" complete.

Expand Down

0 comments on commit 38a1cc8

Please sign in to comment.