summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorRonghang Hu <huronghang@hotmail.com>2015-11-25 21:02:02 -0800
committerRonghang Hu <huronghang@hotmail.com>2015-11-25 21:02:02 -0800
commitd3025f5ffb731ef2f7e796f67f6fd6bd43f601b9 (patch)
tree3c376b4cfca8efa69d38add2973c8366519bbe7c /examples
parent603cbfb97767d1b9ebf102200646f5df237d1749 (diff)
downloadcaffeonacl-d3025f5ffb731ef2f7e796f67f6fd6bd43f601b9.tar.gz
caffeonacl-d3025f5ffb731ef2f7e796f67f6fd6bd43f601b9.tar.bz2
caffeonacl-d3025f5ffb731ef2f7e796f67f6fd6bd43f601b9.zip
Remove bogus stepearly in MNIST example
This `examples/lenet/lenet_stepearly_solver.prototxt` is introduced in #190 by mistake, since stepearly is never actually merged.
Diffstat (limited to 'examples')
-rw-r--r--examples/mnist/lenet_stepearly_solver.prototxt28
1 files changed, 0 insertions, 28 deletions
diff --git a/examples/mnist/lenet_stepearly_solver.prototxt b/examples/mnist/lenet_stepearly_solver.prototxt
deleted file mode 100644
index efc6a335..00000000
--- a/examples/mnist/lenet_stepearly_solver.prototxt
+++ /dev/null
@@ -1,28 +0,0 @@
-# The training protocol buffer definition
-train_net: "lenet_train.prototxt"
-# The testing protocol buffer definition
-test_net: "lenet_test.prototxt"
-# test_iter specifies how many forward passes the test should carry out.
-# In the case of MNIST, we have test batch size 100 and 100 test iterations,
-# covering the full 10,000 testing images.
-test_iter: 100
-# Carry out testing every 500 training iterations.
-test_interval: 500
-# The base learning rate, momentum and the weight decay of the network.
-base_lr: 0.01
-momentum: 0.9
-weight_decay: 0.0005
-# The learning rate policy
-lr_policy: "stepearly"
-gamma: 0.9
-stepearly: 1
-# Display every 100 iterations
-display: 100
-# The maximum number of iterations
-max_iter: 10000
-# snapshot intermediate results
-snapshot: 5000
-snapshot_prefix: "lenet"
-# solver mode: 0 for CPU and 1 for GPU
-solver_mode: 1
-device_id: 1