解决RuntimeError: input is not contiguous问题

标签:Pytorch, dl

出现了这个问题是因为tensor在内存中地址不是连续的,因而需要调用.contiguous()方法使得变为连续.

用法:

torch.randn(2,2).contiguous()

原创文章,转载请注明出处!
本文链接:http://youran.tech/posts/pytorch-tensor-not-continguos.html
上篇: 3.RNN模型
下篇: Ubuntu下的网络监控

留言: