summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlican Bozkurt <alican@ece.neu.edu>2016-06-28 16:28:33 -0400
committerAlican Bozkurt <alican@ece.neu.edu>2016-06-28 16:28:33 -0400
commitbdb94577d97da5cf5b6ec046952dbe79e9c886bf (patch)
tree97f8f73d66730a712f692c96a659a33274b05df7
parentf28f5ae2f2453f42b5824723efc326a04dd16d85 (diff)
downloadcaffeonacl-bdb94577d97da5cf5b6ec046952dbe79e9c886bf.tar.gz
caffeonacl-bdb94577d97da5cf5b6ec046952dbe79e9c886bf.tar.bz2
caffeonacl-bdb94577d97da5cf5b6ec046952dbe79e9c886bf.zip
add default value for rms_decay
-rw-r--r--src/caffe/proto/caffe.proto2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caffe/proto/caffe.proto b/src/caffe/proto/caffe.proto
index 1556781c..6940a705 100644
--- a/src/caffe/proto/caffe.proto
+++ b/src/caffe/proto/caffe.proto
@@ -219,7 +219,7 @@ message SolverParameter {
// RMSProp decay value
// MeanSquare(t) = rms_decay*MeanSquare(t-1) + (1-rms_decay)*SquareGradient(t)
- optional float rms_decay = 38;
+ optional float rms_decay = 38 [default = 0.99];
// If true, print information about the state of the net that may help with
// debugging learning problems.