当前位置: 首页 > article >正文

PyTorch快速入门教程【小土堆】之池化层

视频地址神经网络-最大池化的使用_哔哩哔哩_bilibili

kernel_size (Union[int, Tuple[int, int]]) –要占用的最大窗口的大小
stride (Union[int, Tuple[int, int]]) –窗户的步长。默认是kernel_size
padding (Union[int, Tuple[int, int]]) –隐式负无穷大填充将被添加到两边
dilation (Union[int, Tuple[int, int]]) –控制窗口中元素步幅的参数
return_indices (bool) –如果为True,将返回最大索引以及输出。有用的火炬。nn.MaxUnpool2d之后
ceil_mode (bool) –当为True时,将使用ceil而不是floor来计算输出形状
import torch
from torch import nn
from torch.nn import MaxPool2d

input = torch.tensor([[1, 2, 0, 3, 1],
                      [0, 1, 2, 3, 1],
                      [1, 2, 1, 0, 0],
                      [5, 2, 3, 1, 1],
                      [2, 1, 0, 1, 1]], dtype=torch.float32)

input = torch.reshape(input, (-1, 1, 5, 5)) #-1让程序自己选择合适的batch size

class Tudui(nn.Module):
    def __init__(self):
        super(Tudui, self).__init__()
        self.maxpool1 = MaxPool2d(kernel_size=3, ceil_mode=True)

    def forward(self, input):
        output = self.maxpool1(input)
        return output

tudui = Tudui()
output = tudui(input)
print(output)
# tensor([[[[2., 3.],
#           [5., 1.]]]])

http://www.kler.cn/a/465804.html

相关文章:

  • 设计模式 结构型 适配器模式(Adapter Pattern)与 常见技术框架应用 解析
  • [Qt] 输入控件 | Line | Text | Combo | Spin | Date | Dial | Slider
  • SpringBoot入门之创建一个Hello World项目
  • 《GICv3_Software_Overview_Official_Release_B》学习笔记
  • 【Ubuntu】安装华为的MindSpore
  • 时序优化方法
  • 【Cocos TypeScript 零基础 3.1】
  • 【Rust自学】9.4. 什么时候该使用panic!
  • 服务器等保测评日志策略配置
  • Cyber Security 101-Web Hacking-SQL Fundamentals(SQL 基础知识)
  • Vue3 子组件向父组件传递消息(Events)
  • 2024年变题后华为数通H12-821更新题库
  • SQL Server中最大并行度详解
  • 腾讯云OCR在制造业的应用:内存模组产品识别实战指南
  • 只谈C++11新特性 - 内联命名空间
  • 家政预约小程序06活动展示
  • 企业网络综合组网
  • Couchbase 的分布式查询引擎(N1QL Query Engine)
  • Onedrive精神分裂怎么办(有变更却不同步)
  • 日常工作常用命令集合
  • SD下载、安装、使用、卸载-Stable Diffusion整合包v4.10发布!
  • 库伦值自动化功耗测试工具
  • CSS篇之炫酷框
  • 强力巨彩租赁屏:满足市场需求,打造视觉焦点
  • LeetCode2894 分类求和并作并作差
  • 关于mybatis的框架方面的问题