pytorch torch.nn.Sequential(* args)(嘎哈用的?构建神经网络用的?)
Posted Dontla
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytorch torch.nn.Sequential(* args)(嘎哈用的?构建神经网络用的?)相关的知识,希望对你有一定的参考价值。
class torch.nn.Sequential(* args)
一个时序容器。Modules 会以他们传入的顺序被添加到容器中。当然,也可以传入一个OrderedDict。
为了更容易的理解如何使用Sequential, 下面给出了一个例子:
# Example of using Sequential
model = nn.Sequential(
nn.Conv2d(1,20,5),
nn.ReLU(),
nn.Conv2d(20,64,5),
nn.ReLU()
)
# Example of using Sequential with OrderedDict
model = nn.Sequential(OrderedDict([
('conv1', nn.Conv2d(1,20,5)),
('relu1', nn.ReLU()),
('conv2', nn.Conv2d(20,64,5)),
('relu2', nn.ReLU())
]))
以上是关于pytorch torch.nn.Sequential(* args)(嘎哈用的?构建神经网络用的?)的主要内容,如果未能解决你的问题,请参考以下文章