skbhat

Results 3 comments of skbhat

First apply .contiguous() before view. Eg: correct_k = correct[:k].view(-1).float().sum(0) must be changed to correct_k = correct[:k].contiguous().view(-1).float().sum(0) Suggested by https://github.com/cezannec/capsule_net_pytorch/issues/4

I am also facing the same issue while compiling inside a docker image. Thanks