В определении tf.nn.max_pool
используется ksize
для <? p >
tf.nn.max_pool(value, ksize, strides, padding, data_format='NHWC', name=None)
Performs the max pooling on the input.
Args:
value: A 4-D Tensor with shape [batch, height, width, channels] and type tf.float32.
ksize: A list of ints that has length >= 4. The size of the window for each dimension of the input tensor.
Например, если input value
имеет tensor : [1, 64, 64, 3]
и ksize=3
. что это значит?