tensorflow学习笔记-----pooling/池化

本文详细介绍了池化操作的概念及其在深度学习中的应用。包括平均池化、最大池化及带有最大值索引的最大池化等不同类型的池化操作,并解释了窗口大小、步幅以及填充等参数对池化结果的影响。

Pooling

The pooling ops sweep a rectangular window over the input tensor, computing a reduction operation for each window (average, max, or max with argmax). Each pooling op uses rectangular windows of size ksize separated by offset strides. For example, if strides is all ones every window is used, if strides is all twos every other window is used in each dimension, etc.

In detail, the output is

output[i] = reduce(value[strides * i:strides * i + ksize])

where the indices also take into consideration the padding values. Please refer to the Convolution section for details about the padding calculation.

有关pooling的函数:

  • tf.nn.avg_pool
  • tf.nn.max_pool
  • tf.nn.max_pool_with_argmax
  • tf.nn.avg_pool3d
  • tf.nn.max_pool3d
  • tf.nn.fractional_avg_pool
  • tf.nn.fractional_max_pool
  • tf.nn.pool
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值