在阅读Tensorflow教程和API文档时,我不明白他们如何定义卷积输入和过滤器参数的形状。方法是:tf.nn.conv2d(input, filter, strides, padding, use_cudnn_on_gpu=None, data_format=None, name=None)
,其中输入为shape:[batch, in_height, in_width, in_channels]
,过滤器为shape:[filter_height, filter_width, in_channels, out_channels]
。如果有人能够阐明如何正确定义“in_channel”和“out_channel”大小,那将非常有帮助。