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
When extracting image patches, a squared filter size based on conv_layer.kernel.shape[0] is used.
We could perhaps use the actual kernel size, potentially rectangular: conv_layer.kernel_size (which is a 2-length tuple after Conv2D initialization).
The text was updated successfully, but these errors were encountered:
When extracting image patches, a squared filter size based on
conv_layer.kernel.shape[0]
is used.We could perhaps use the actual kernel size, potentially rectangular:
conv_layer.kernel_size
(which is a 2-length tuple afterConv2D
initialization).The text was updated successfully, but these errors were encountered: