Skip to content

Instantly share code, notes, and snippets.

@dniku
Created April 13, 2015 17:46
Show Gist options
  • Save dniku/e3669ab569d782e03778 to your computer and use it in GitHub Desktop.
Save dniku/e3669ab569d782e03778 to your computer and use it in GitHub Desktop.
Lenet solver which reports more often
# The train/test net protocol buffer definition
net: "lenet_train_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 20 training iterations.
test_interval: 20
# 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: "inv"
gamma: 0.0001
power: 0.75
# Display every 20 iterations
display: 20
# The maximum number of iterations
max_iter: 10000
# snapshot intermediate results
snapshot: 5000
snapshot_prefix: "lenet"
# solver mode: CPU or GPU
solver_mode: CPU
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment