You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 9, 2018. It is now read-only.
The border argument on ConvolutionLayer specifies how padding should be handled. The convolution sizes in this example are exactly consistent with the Caffe reference implementation:
A BorderValid convolution produces an output with dimensions equal to the input size minus the (kernel size - 1) in each dimension. A BorderZero convolution will zero-pad such that the output has the same dimensions as the input.
If you want a different padding configuration, the ZeroPad function will let you do that. This combination of manual padding and BorderValid convolution is equivalent to BorderZero convolution:
Hello,
Is padding implemented in the ConvolutionLayer and other calls ?
Is there an example that demonstrates this ?
Thanks.
The text was updated successfully, but these errors were encountered: