diff options
author | Alican Bozkurt <alican@ece.neu.edu> | 2016-06-28 16:28:33 -0400 |
---|---|---|
committer | Alican Bozkurt <alican@ece.neu.edu> | 2016-06-28 16:28:33 -0400 |
commit | bdb94577d97da5cf5b6ec046952dbe79e9c886bf (patch) | |
tree | 97f8f73d66730a712f692c96a659a33274b05df7 /src/caffe | |
parent | f28f5ae2f2453f42b5824723efc326a04dd16d85 (diff) | |
download | caffeonacl-bdb94577d97da5cf5b6ec046952dbe79e9c886bf.tar.gz caffeonacl-bdb94577d97da5cf5b6ec046952dbe79e9c886bf.tar.bz2 caffeonacl-bdb94577d97da5cf5b6ec046952dbe79e9c886bf.zip |
add default value for rms_decay
Diffstat (limited to 'src/caffe')
-rw-r--r-- | src/caffe/proto/caffe.proto | 2 |
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. |