I am using Pytorch. I got this RuntimeError while evaluating a model. Any idea how to solve this?
RuntimeError: view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces)
Asked Answered
This link can be helpful github.com/cezannec/capsule_net_pytorch/issues/4 –
Beutner
SOLUTION: Just replace the view() function with reshape() function as suggested in the error and it works.
I guess this has to do with how the tensor is stored in memory.
SOLUTION2: change the .view(...)
to .contiguous().view(...)
.
Actually, 'reshape()' does a similar job as contiguous() under the hood, if it needs.
© 2022 - 2024 — McMap. All rights reserved.