其他分享
首页 > 其他分享> > Pytorch的nn.Sequential(*modules)中*的理解

Pytorch的nn.Sequential(*modules)中*的理解

作者:互联网

*作用在实参上,是将输入迭代器拆成一个个元素。

从nn.Sequential的定义来看,遇到list,必须用*号进行转化,否则会报错 TypeError: list is not a Module subclass。

参考:nn.Sequential的参数的注意事项_apodxxx的博客-CSDN博客

标签:nn,modules,list,博客,Pytorch,Sequential,报错
来源: https://www.cnblogs.com/vvzhang/p/16088020.html