I ask this here, because the Tensorflow repo now states that the issues there are only for feature requests and bugs.
In the tf.nn.conv2d
docstring, it states, as the second thing this method does is:
Extracts image patches from the input tensor to form a *virtual*
tensor of shape `[batch, out_height, out_width,
filter_height * filter_width * in_channels]`.
What is the out_height
and the out_width
in the docstring above?
I imagine this the number is determined by the input and filter dimensions, but I wish this wasn't implied and was more explicit, or there was an example.