pytorch系列文档之API:Containers中的ModuleList

一个包含子模块的list
ModuleList 可以像 Python list一样被索引

torch.nn.ModuleList(modules=None)

参数:

modules (iterable, optional) – an iterable of modules to add

示例:

class MyModule(nn.Module):
    def __init__(self):
        super(MyModule, self).__init__()
        self.linears = nn.ModuleList([nn.Linear(10, 10) for i in range(10)])

    def forward(self, x):
        # ModuleList can act as an iterable, or be indexed using ints
        for i, l in enumerate(self.linears):
            x = self.linears[i // 2](x) + l(x)
        return x

几个方法
1· append(module)
在list最后插入一个子模块

append(module)
参数:
module (nn.Module) – module to append

2· extend(modules)
也是在list的最后插入子模块,但是这个参数是python的可迭代对象,例如一堆子模块组成的list
Appends modules from a Python iterable to the end of the list.

extend(modules)
参数
modules (iterable) – iterable of modules to append

3· insert(index, module)
包含两个参数,就是在list的第index个子模块之前插入一个子模块
Insert a given module before a given index in the list.

insert(index, module)
参数
index (int) – index to insert.
module (nn.Module) – module to insert
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值