Following Tensorflow's best practices for performance, I am using NCHW data format, but I am not sure about the filter shape to be used in tensorflow.nn.conv2d.
The doc says to use [filter_height, filter_width, in_channels, out_channels]
for NHWC format, but is not clear about what to do with NCHW.
Should the same shape be used ?