[PyTorch] RuntimeError: view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces)
원인은 torch.view 에서 생기는 에러로 나의 경우는 .cuda()를 이용해 GPU 사용시 문제가 생겼다 해결방법 x.view(-1, ) -> x.contiguous().view(-1, )로 진행하면 해결된다