deep3d
deep3d copied to clipboard
rror in operator depth: [22:17:11] /home/hui/third/deep3d-master/operators/./depth_dot-inl.h:103: Check failed: lshape[1] == param_.scale[1]-param_.scale[0]+1 (33 vs. -4294967263)
I got this error when add depth-dot code and recomplie mxnet, and change 'type' to 'mode' in softmax
Me too, have you solved it by any chance?
Did you solve it? I have the same error.
I change scale from (4294967281,17) to (-15,17) in deep3d-symbol.json to fixed it.
"op": "DepthDot", "param": { "scale": "(4294967281,17)", "upsample": "1" }, "name": "depth",
to
"op": "DepthDot", "param": { "scale": "(-15,17)", "upsample": "1" }, "name": "depth",
i thought this error maybe cause by cast sign 32bit-int to unsigned 32bit-int. -15 and 4294967281 have same binary code in 32bit-int.