From: Jonathan L Long Date: Sat, 26 Dec 2015 21:10:11 +0000 (-0800) Subject: add short description of dilation to caffe.proto X-Git-Tag: submit/tizen/20180823.020014~270^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e3e9ce17636f813c80b5b22afc069d3c1c802cb;p=platform%2Fupstream%2Fcaffeonacl.git add short description of dilation to caffe.proto --- diff --git a/src/caffe/proto/caffe.proto b/src/caffe/proto/caffe.proto index 87c4662..019aa61 100644 --- a/src/caffe/proto/caffe.proto +++ b/src/caffe/proto/caffe.proto @@ -518,6 +518,9 @@ message ConvolutionParameter { repeated uint32 pad = 3; // The padding size; defaults to 0 repeated uint32 kernel_size = 4; // The kernel size repeated uint32 stride = 6; // The stride; defaults to 1 + // Factor used to dilate the kernel, (implicitly) zero-filling the resulting + // holes. (Kernel dilation is sometimes referred to by its use in the + // algorithme à trous from Holschneider et al. 1987.) repeated uint32 dilation = 18; // The dilation; defaults to 1 // For 2D convolution only, the *_h and *_w versions may also be used to