torch.nn.utils.fuse_linear_bn_weights¶
- torch.nn.utils.fuse_linear_bn_weights(linear_w, linear_b, bn_rm, bn_rv, bn_eps, bn_w, bn_b)[源代码]¶
将线性模块参数和 BatchNorm 模块参数融合到新的线性模块参数中。
- 参数
linear_w (torch.Tensor) – 线性权重。
linear_b (可选[torch.Tensor]) – 线性偏差。
bn_rm (torch.Tensor) – BatchNorm 运行均值。
bn_rv (torch.Tensor) – BatchNorm 运行方差。
bn_eps (float) – BatchNorm epsilon。
bn_w (torch.Tensor) – BatchNorm 权重。
bn_b (torch.Tensor) – BatchNorm 偏差。
- 返回值
融合的线性权重和偏差。
- 返回类型
Tuple[torch.nn.Parameter, torch.nn.Parameter]