nn.ModuleList 索引
时间: 2023-03-30 14:03:51 浏览: 257
对Pytorch中nn.ModuleList 和 nn.Sequential详解
nn.ModuleList 可以通过索引来访问其中的模块,例如:
```
import torch.nn as nn
module_list = nn.ModuleList([nn.Linear(10, 10) for i in range(10)])
module = module_list[]
```
这里我们创建了一个包含 10 个线性层的 ModuleList,然后通过索引 来访问其中的第一个模块。
阅读全文