andyhahaha
andyhahaha
I have the same issue after the computer went to sleep mode. I still can't fix it. Now I can only wait till it suddenly works like @alexmaite25 . Please...
I follow the split from this repo. https://github.com/alexgkendall/SegNet-Tutorial This is the repo from segnet author alex kendall.
https://github.com/msracver/Deep-Feature-Flow/blob/master/dff_rfcn/config/config.py#L144
Try other number 3, 5... What happens?
same issue as https://github.com/msracver/Deep-Feature-Flow/issues/33
Hi, Zhihang Thanks for reply! But I think this code haven't run to the sum(dim=1, keepdim=True) yet. I set the pdb and found that it stop at the function "_add",...
It works! Thanks. But after that I encounter another issue. This error message said there is operation not implemented. Is it means cat or view? But I can found these...
Sorry! I found that it is caused by permute function.
Hi, Zhihang I do the permute by myself. It seems pretty good. But after permute, pytorch need contiguous() before view(). contiguous raise this bug again. WARNING: CANNOT FOUND blob at...
I get rid of continuous functions and use reshape instead of view. View can only operate on continuous tensor so it needs continuous before it. Reshape don't need continuous.