python運行報錯:
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()
,使其變為連續的即可,如下圖所示。
https://blog.csdn.net/m0_52347246/article/details/120176728