本文主要是介绍一步真实解决RuntimeError: view size is not compatible with input tensor‘s size and stride,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在python或者Colab运行咱们程序时候
可能报错RuntimeError: view size is not compatible with input tensor’s size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(…) instead.
这里浅浅记录一下~~~(每次改完过一段时间又忘记了,我觉得有必要给它记个笔记,以供自己后面复习)
报错代码如图:
根据报错的上方找到代码具体出错位置
出现这个原因主要就是因为view()需要Tensor中的元素地址是连续的,因为可能出现Tensor不连续的情况,所以修改方法为:
在.view前加.contiguous(),使其变为连续就ok。
最后的效果如下:
到此就解决了问题,成功解决bug~~~
更多干货,可以关注公众号“蓝胖胖干货”,教你账号注册,快速上网等秘籍~~~咱们一起成长!
这篇关于一步真实解决RuntimeError: view size is not compatible with input tensor‘s size and stride的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!