Closed Liang-Liao closed 4 years ago
我和您出现了一样的问题,请问您的问题解决了吗
https://github.com/ShusenTang/Dive-into-DL-PyTorch/issues/156#issuecomment-691947265
我在 net() 方法里面的 W1 和 W2 加上了 float() 转换就行了。如下:
def net(X):
X = X.view((-1, num_inputs))
H = relu(torch.matmul(X, W1.float()) + b1)
return torch.matmul(H, W2.float()) + b2
我在 net() 方法里面的 W1 和 W2 加上了 float() 转换就行了。如下:
def net(X): X = X.view((-1, num_inputs)) H = relu(torch.matmul(X, W1.float()) + b1) return torch.matmul(H, W2.float()) + b2
在您的帮助下成功运行了,十分感谢!
bug描述 按3.9.4小节的net函数来计算,在我的环境里面报错了
错误如下:
版本信息 pytorch: 1.4.0 torchvision:0.5.0 torchtext: ...