Jump to content

Convolutional neural network: Difference between revisions

Line 68: Line 68:
With convolution layers in tensorflow and other libraries you often see these two types of padding:
With convolution layers in tensorflow and other libraries you often see these two types of padding:
* <code>VALID</code> - Do not do any padding
* <code>VALID</code> - Do not do any padding
* <code>SAME</code> - Apply zero padding such that the output will have resolution \(x/stride\).
* <code>SAME</code> - Apply zero padding such that the output will have resolution \(\lfloor x/stride \rfloor\).


===Dilation===
===Dilation===