pytorch调试问题

出现错误:RuntimeError: invalid argument 2: view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Call .contiguous() before .view().

听话乖乖使用.contiguous()解决了第一个bug

原因:两种说法:1.张量必须是连续存储;2.变换维度不能保证tensor的stride是定长?

 

你可能感兴趣的:(pytorch调试问题)