summaryrefslogtreecommitdiff
path: root/src/caffe
diff options
context:
space:
mode:
authorJeff Donahue <jeff.donahue@gmail.com>2015-01-17 15:41:44 -0800
committerJeff Donahue <jeff.donahue@gmail.com>2015-01-17 15:43:38 -0800
commit1304173d85d3d382d3ae2b2aa4f6c04b2c8c75ca (patch)
tree090900dda5e52444d7886e695cbb89171bfa691e /src/caffe
parentf476e9014830a502b0b01e18b3936021f7b2fb33 (diff)
downloadcaffeonacl-1304173d85d3d382d3ae2b2aa4f6c04b2c8c75ca.tar.gz
caffeonacl-1304173d85d3d382d3ae2b2aa4f6c04b2c8c75ca.tar.bz2
caffeonacl-1304173d85d3d382d3ae2b2aa4f6c04b2c8c75ca.zip
Make comments for sparse GaussianFiller match actual behavior
(Fixes #1497 reported by @denizyuret)
Diffstat (limited to 'src/caffe')
-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 8086ad66..d6eec020 100644
--- a/src/caffe/proto/caffe.proto
+++ b/src/caffe/proto/caffe.proto
@@ -38,7 +38,7 @@ message FillerParameter {
optional float max = 4 [default = 1]; // the max value in uniform filler
optional float mean = 5 [default = 0]; // the mean value in Gaussian filler
optional float std = 6 [default = 1]; // the std value in Gaussian filler
- // The expected number of non-zero input weights for a given output in
+ // The expected number of non-zero output weights for a given input in
// Gaussian filler -- the default -1 means don't perform sparsification.
optional int32 sparse = 7 [default = -1];
}