From d3025f5ffb731ef2f7e796f67f6fd6bd43f601b9 Mon Sep 17 00:00:00 2001 From: Ronghang Hu Date: Wed, 25 Nov 2015 21:02:02 -0800 Subject: [PATCH] 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. --- .../mnist/lenet_stepearly_solver.prototxt | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 examples/mnist/lenet_stepearly_solver.prototxt diff --git a/examples/mnist/lenet_stepearly_solver.prototxt b/examples/mnist/lenet_stepearly_solver.prototxt deleted file mode 100644 index efc6a335d8f..00000000000 --- 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