我是靠谱客的博主 俭朴小蝴蝶,最近开发中收集的这篇文章主要介绍RuntimeError mat1 dim 1 must match mat2 dim 0RuntimeError: mat1 dim 1 must match mat2 dim 0,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
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)
则出现让面的错误提示
最后
以上就是俭朴小蝴蝶为你收集整理的RuntimeError mat1 dim 1 must match mat2 dim 0RuntimeError: mat1 dim 1 must match mat2 dim 0的全部内容,希望文章能够帮你解决RuntimeError mat1 dim 1 must match mat2 dim 0RuntimeError: mat1 dim 1 must match mat2 dim 0所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复