AI | ML/코드

[PyTorch] RuntimeError: view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces)

깜태 2021. 6. 28. 11:38
728x90

원인은 torch.view 에서 생기는 에러로 나의 경우는 .cuda()를 이용해 GPU 사용시 문제가 생겼다

 

해결방법

 

x.view(-1, ) -> x.contiguous().view(-1, )로 진행하면 해결된다

728x90