本文简要介绍python语言中 torchrec.modules.lazy_extension.LazyModuleExtensionMixin.apply
的用法。
用法:
apply(fn: Callable[[torch.nn.modules.module.Module], None]) → torch.nn.modules.module.Module
fn(torch.nn.Module -> 无) -要应用于每个子模块的函数。
self
火炬.nn.模块
将
fn
递归地应用于每个子模块(由.children()
返回)以及自身。典型用途包括初始化模型的参数。注意
在未初始化的 lazy-module 上调用
apply()
将导致错误。在调用lazy-module 上的apply()
之前,用户需要初始化lazy-module(通过执行虚拟前向传递)。例子:
@torch.no_grad() def init_weights(m): print(m) if type(m) == torch.nn.LazyLinear: m.weight.fill_(1.0) print(m.weight) linear = torch.nn.LazyLinear(2) linear.apply(init_weights) # this fails, because `linear` (a lazy-module) hasn't been initialized yet input = torch.randn(2, 10) linear(input) # run a dummy forward pass to initialize the lazy-module linear.apply(init_weights) # this works now
参数:
返回:
返回类型:
相关用法
- Python PyTorch LazyModuleMixin用法及代码示例
- Python PyTorch LayerNorm用法及代码示例
- Python PyTorch LambdaLR用法及代码示例
- Python PyTorch Laplace用法及代码示例
- Python PyTorch LinearLR用法及代码示例
- Python PyTorch LKJCholesky用法及代码示例
- Python PyTorch L1Loss用法及代码示例
- Python PyTorch LPPool2d用法及代码示例
- Python PyTorch LeakyReLU用法及代码示例
- Python PyTorch LogSigmoid用法及代码示例
- Python PyTorch LowRankMixtureCrossNet用法及代码示例
- Python PyTorch LineReader用法及代码示例
- Python PyTorch LogNormal用法及代码示例
- Python PyTorch LocalResponseNorm用法及代码示例
- Python PyTorch LSTM用法及代码示例
- Python PyTorch LowRankMultivariateNormal用法及代码示例
- Python PyTorch Linear用法及代码示例
- Python torchrec.modules.crossnet.LowRankCrossNet用法及代码示例
- Python PyTorch LogSoftmax用法及代码示例
- Python PyTorch LSTMCell用法及代码示例
- Python PyTorch LocalElasticAgent用法及代码示例
- Python PyTorch LPPool1d用法及代码示例
- Python PyTorch LinearReLU用法及代码示例
- Python PyTorch frexp用法及代码示例
- Python PyTorch jvp用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torchrec.modules.lazy_extension.LazyModuleExtensionMixin.apply。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。