【发布时间】:2019-12-24 10:36:55
【问题描述】:
我是 pytorch 的新手,我想了解如何为网络的第一个隐藏层设置初始权重。我解释得更好一点:我的网络是一个非常简单的一层 MLP,有 784 个输入值和 10 个输出值
class Classifier(nn.Module):
def __init__(self):
super().__init__()
self.fc1 = nn.Linear(784, 128)
self.fc2 = nn.Linear(128, 10)
# Dropout module with 0.2 drop probability
self.dropout = nn.Dropout(p=0.2)
def forward(self, x):
# make sure input tensor is flattened
# x = x.view(x.shape[0], -1)
# Now with dropout
x = self.dropout(F.relu(self.fc1(x)))
# output so no dropout here
x = F.log_softmax(self.fc2(x), dim=1)
return x
目前,我有一个形状为 (128, 784) 的 numpy 矩阵,其中包含我想要的 fc1 中的权重值。如何用矩阵中包含的值初始化第一层的权重?
在其他答案中在线搜索我发现我必须为权重定义 init 函数,例如
def weights_init(m):
classname = m.__class__.__name__
if classname.find('Conv2d') != -1:
m.weight.data.normal_(0.0, 0.02)
elif classname.find('BatchNorm') != -1:
m.weight.data.normal_(1.0, 0.02)
m.bias.data.fill_(0)
但我看不懂代码
【问题讨论】:
标签: python neural-network pytorch