我在这里问这个,因为Tensorflow回购现在说明那里的问题只适用于功能请求和错误。
在tf.nn.conv2d
docstring中,它指出,这个方法的第二件事是:
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]`.
上面文档字符串中的out_height
和out_width
是什么?
我想这个数字是由输入和过滤器维度决定的,但我希望这不是暗示的,而是更明确,或者有一个例子。