用法:
add(module, **kwargs)
- module:(mxnet.module.BaseModule) - 要添加的新模块。
- kwargs:(
**keywords
) -所有关键字参数都保存为添加模块的元信息。目前已知的元包括take_labels
: 指示模块是否期望计算时取标签。请注意,链中的任何模块都可以采用标签(不一定只有最上面的一个),并且它们都采用从
SequentialModule
的原始数据批次传递的相同标签。
此函数返回
self
以允许我们轻松链接一系列add
调用。self
参数:
返回:
返回类型:
将模块添加到链中。
例子:
>>> # An example of addinging two modules to a chain. >>> seq_mod = mx.mod.SequentialModule() >>> seq_mod.add(mod1) >>> seq_mod.add(mod2)
相关用法
- Python mxnet.module.BaseModule.get_outputs用法及代码示例
- Python mxnet.module.BaseModule.forward用法及代码示例
- Python mxnet.module.BaseModule.bind用法及代码示例
- Python mxnet.module.BaseModule.init_params用法及代码示例
- Python mxnet.module.BaseModule.get_params用法及代码示例
- Python mxnet.module.BaseModule.set_params用法及代码示例
- Python mxnet.module.BaseModule.update用法及代码示例
- Python mxnet.module.BaseModule.iter_predict用法及代码示例
- Python mxnet.module.BaseModule.save_params用法及代码示例
- Python mxnet.module.BucketingModule.set_params用法及代码示例
- Python mxnet.module.BaseModule.init_optimizer用法及代码示例
- Python mxnet.module.BaseModule.score用法及代码示例
- Python mxnet.module.BaseModule.fit用法及代码示例
- Python mxnet.module.BaseModule.update_metric用法及代码示例
- Python mxnet.module.Module.set_params用法及代码示例
- Python mxnet.module.BaseModule.predict用法及代码示例
- Python mxnet.module.BaseModule.get_input_grads用法及代码示例
- Python mxnet.module.BaseModule.backward用法及代码示例
- Python mxnet.module.BaseModule.load_params用法及代码示例
- Python mxnet.module.BaseModule用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 mxnet.module.SequentialModule.add。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。