作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我想将 PyTorch(继承自 torch.nn.Module
的类的实例)中神经网络的所有参数乘以 0.9
。我该怎么做?
最佳答案
让 net
成为神经网络 nn.Module
的实例。然后,将所有参数乘以 0.9
:
state_dict = net.state_dict()
for name, param in state_dict.items():
# Transform the parameter as required.
transformed_param = param * 0.9
# Update the parameter.
param.copy_(transformed_param)
如果您只想更新权重而不是每个参数:
state_dict = net.state_dict()
for name, param in state_dict.items():
# Don't update if this is not a weight.
if not "weight" in name:
continue
# Transform the parameter as required.
transformed_param = param * 0.9
# Update the parameter.
param.copy_(transformed_param)
关于python - 如何在 PyTorch 中更新神经网络的参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49446785/
我是一名优秀的程序员,十分优秀!