RuntimeError: mat1 and mat2 shapes cannot be multiplied (1x180 and 192x1)
时间: 2024-01-22 09:53:37 浏览: 122
RuntimeError: Cannot run the event loop while another loop is running(目前没有解决)
5星 · 资源好评率100%
这个错误表示两个矩阵的维度不兼容,无法进行矩阵乘法运算。具体来说,mat1的列数必须等于mat2的行数,才能进行矩阵乘法运算。在你的情况下,mat1是一个1行180列的矩阵,mat2是一个192行1列的矩阵,无法进行矩阵乘法运算。你需要检查一下你的代码,看看是不是在矩阵乘法运算之前没有把矩阵的维度设置正确。
阅读全文