我是靠谱客的博主 精明爆米花,最近开发中收集的这篇文章主要介绍PyTorch错误 torch.addmm RuntimeError: mat1 dim 1 must match mat2 dim 0,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
PyTorch错误 torch.addmm RuntimeError: mat1 dim 1 must match mat2 dim 0
flyfish
详细提示
File "python3.6/site-packages/torch/nn/modules/module.py", line 727, in _call_impl
result = self.forward(*input, **kwargs)
File "/media/ubuntu/data/pytorch1.7/soothsayer/model/net_regression.py", line 50, in forward
x = self.predict(x)
File "python3.6/site-packages/torch/nn/modules/module.py", line 727, in _call_impl
result = self.forward(*input, **kwargs)
File "python3.6/site-packages/torch/nn/modules/linear.py", line 93, in forward
return F.linear(input, self.weight, self.bias)
File "python3.6/site-packages/torch/nn/functional.py", line 1690, in linear
ret = torch.addmm(bias, input, weight.t())
RuntimeError: mat1 dim 1 must match mat2 dim 0
代码
self.fc1 = nn.Linear(128, 120)
self.fc2 = nn.Linear(120, 84)
假设forward中要依次执行fc1和fc2
fc1的out_features 等于fc2的in_features就不会有错误,这里都是120不会有错误
反之
self.fc1 = nn.Linear(128, 121)
self.fc2 = nn.Linear(120, 84)
则出现让面的错误提示
最后
以上就是精明爆米花为你收集整理的PyTorch错误 torch.addmm RuntimeError: mat1 dim 1 must match mat2 dim 0的全部内容,希望文章能够帮你解决PyTorch错误 torch.addmm RuntimeError: mat1 dim 1 must match mat2 dim 0所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复