首页> 开发问题 >其它问题 其它问题
module 'torch' has no attribute 'gesv'
作者:小萝卜 2019-12-03 【 其它 】 浏览 2997
简介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)
相关文章
- Namenode 没启动
- scp 文件 : /目录: Permission denied
- pycharm无法识别自己的文件夹的程序
- Java compiler level does not match the version of the installed Java project facet
- Unreachable statement
- 异常解决:util.NativeCodeLoader: Unable to load native-hadoop library for your platform
- 关于windows10上的sourcetree突然打不开的问题的解决策略
- bash: hadoop:command not found
- Python运行语法错误:IndentationError: unindent does not match any outer indentation level
- matlab命令行双箭头消失
