Pytorch中nn.Sequential()函数创建网络的几种方法
创始人
2025-01-11 08:36:00
0

1. 创作灵感

在创建大型网络的时候,如果使用nn.Sequential()将几个有紧密联系的运算组成一个序列,可以使网络的结构更加清晰。

2.应用举例

为了记录nn.Sequential()的用法,搭建以下测试网络:

2.1 方法一

把网络分成3个Sequential序列,分别实现:第一个是卷积序列,第二个是铺平成一维的操作,第3个包含了两个线性层。

 class TestNet(nn.Module):     def __init__(self, in_channels, mid_channels):         super(TestNet,self).__init__()         self.conv = nn.Sequential(             nn.Conv2d(in_channels,in_channels*2,kernel_size=3,stride=2,padding=1),             nn.BatchNorm2d(in_channels*2),             nn.ReLU(inplace=True),             nn.Conv2d(in_channels*2,in_channels*4,kernel_size=3,stride=2,padding=1),             nn.BatchNorm2d(in_channels*4),             nn.ReLU(inplace=True)         )         self.flat = nn.Flatten()         self.linaer = nn.Sequential(             nn.Linear(49*4, 64),             nn.Linear(64, 10),             nn.Linear(10, 1)         )      def forward(self,x):         x = self.conv(x)         print(x.shape)         x = self.flat(x)         print(x.shape)         x = self.linaer(x)         print(x.shape)         return x 

运行结果:

从维度上判断,网络符合预期。

2.2  方法二

第二种方法,在网络结构比较复杂且重复的单元比较多,为了自动化生成网络,通常会先定义一个列表,在列表中添加网络,再使用nn.Sequential()。

使用方法二所需要的代码如下:

class TestNet2(nn.Module):     def __init__(self, in_channels):         super(TestNet2,self).__init__()         layer1 = []         layer2 = []         layer1.append(nn.Conv2d(in_channels,in_channels*2,kernel_size=3,stride=2,padding=1))         layer1.append(nn.BatchNorm2d(in_channels*2))         layer1.append(nn.ReLU(inplace=True))         layer1.append(nn.Conv2d(in_channels*2,in_channels*4,kernel_size=3,stride=2,padding=1))         layer1.append(nn.BatchNorm2d(in_channels*4))         layer1.append(nn.ReLU(inplace=True))         self.conv = nn.Sequential(*layer1)         self.flat = nn.Flatten()         layer2.append(nn.Linear(49*4, 64))         layer2.append(nn.Linear(64, 10))         layer2.append(nn.Linear(10, 1))         self.linaer = nn.Sequential(*layer2)      def forward(self,x):         x = self.conv(x)         print(x.shape)         x = self.flat(x)         print(x.shape)         x = self.linaer(x)         print(x.shape)         return x

运行结果如下:

与第一种方法的结果相同。

参考文献:

nn.Sequential、nn.ModuleList、nn.ModuleDict区别及使用技巧-CSDN博客

相关内容

热门资讯

智星菠萝辅助!wpk系统是否存... 智星菠萝辅助!wpk系统是否存在作弊行为,智星菠萝辅助器(详细辅助2025版教程)1.智星菠萝辅助器...
透视好牌“wpk辅助器”竟然真... 透视好牌“wpk辅助器”竟然真的是有挂(辅助挂)详细辅助专业教程;1、上手简单,内置详细流程视频教学...
wpk透视脚本视频!fishp... wpk透视脚本视频!fishpoker透视,wepoker辅助器安装包(详细辅助我来教教你)1、we...
透视有挂“智星德州菠萝透视插件... 透视有挂“智星德州菠萝透视插件工具”切实是有挂(辅助挂)详细辅助高科技教程在进入辅助挂后,参与本局比...
wepoker免费透视脚本!w... wepoker免费透视脚本!wepoker-h5下载,wpk透视脚本视频(详细辅助德州教程);小薇(...
aapoker透视脚本!wep... aapoker透视脚本!wepoker辅助脚本,wpk辅助插件(详细辅助攻略教程);无聊就玩这款aa...
透视ai代打“aapoker辅... 透视ai代打“aapoker辅助包”总是存在有挂(辅助挂)详细辅助曝光教程;1. ai辅助创建新账号...
wepoker透视脚本下载!w... wepoker透视脚本下载!wepoker黑侠辅助器,hhpoker透视脚本(详细辅助靠谱教程);致...
透视安装“hhpoker辅助软... 透视安装“hhpoker辅助软件下载”切实是真的有挂(辅助挂)详细辅助透牌教程1、玩家可以在软件透明...
wepoker免费永久脚本!p... wepoker免费永久脚本!pokerrrr2辅助,wpk辅助ai(详细辅助透明教程);人气非常高,...