首页> 开发问题 >其它问题 其它问题
module 'torch' has no attribute 'gesv'
作者:小萝卜 2019-12-03 【 其它 】 浏览 3061
简介module 'torch' has no attribute 'gesv'
新版torch不支持gesv,使用solve函数。
Kt, _ = torch.gesv(P.mm(H.t()).t(), S)
改成
Kt, _ = torch.solve(P.mm(H.t()).t(), S)
很赞哦! (0)
相关文章
- MapReduce报错:Error: java.io.IOException: Initialization of all the collectors failed. Error in last collector was :interface javax.xml.soap.Text
- pycharm无法识别自己的文件夹的程序
- Unreachable statement
- Mapreduce报错:java.lang.ClassNotFoundException: Class Mapper not found
- bash: hadoop:command not found
- matlab命令行双箭头消失
- Maven C盘用户文件下没有.m2
- MATLAB关闭科学计数法显示
- windows10 onenote 显示英文 怎么办?
- Python问题:SyntaxError: Non-ASCII character '\xe2' in file
