Pytorch 中的 MaxPool 的 ceil_mode参数
Posted 怎样才能回到过去
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pytorch 中的 MaxPool 的 ceil_mode参数相关的知识,希望对你有一定的参考价值。
① 当ceil_mode = False时,剩余数据不足kernel_size大小时,直接舍弃;
② 当ceil_mode = True时,将保存不足为kernel_size大小的数据保存,自动补足NAN至kernel_size大小
以上是关于Pytorch 中的 MaxPool 的 ceil_mode参数的主要内容,如果未能解决你的问题,请参考以下文章
pytorch 池化层——最大值池化nn.MaxPool2d() nn.MaxPool1d()
[Pytorch系列-32]:卷积神经网络 - torch.nn.MaxPool2d() 用法详解
PyTorch 的 Pooling 和 UnPooling函数中的 indices 参数:nn.MaxPool2d/nn.MaxUnpool2dF.max_pool2d/F.max_unpool2d