Check failed: b < len (21 vs. 21) slicing with begin[0]=21 exceends limit of 21 #13520
Replies: 7 comments
-
hi @bobpoekert could you please bring a minimal example that can reproduce this issue? Which MXNet version you are using? Are you using Python? |
Beta Was this translation helpful? Give feedback.
-
@bobpoekert : Could you please provide us more information about the setup and minimum reproducible script? |
Beta Was this translation helpful? Give feedback.
-
@bobpoekert Has the issue been resolved for you? If not requesting you to provide us with setup and minimum reproducible script |
Beta Was this translation helpful? Give feedback.
-
@mxnet-label-bot can this question be closed? |
Beta Was this translation helpful? Give feedback.
-
@rahul003 : Could you help with this? |
Beta Was this translation helpful? Give feedback.
-
I get the same error when train my own dataset. I use VOCLike to load my dataset which described at |
Beta Was this translation helpful? Give feedback.
-
Thanks for the suggestion @zhaotun. I faced the same problem and your proposed fix solved it. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
It looks like I’m hitting this condition: https://github.com/apache/incubator-mxnet/blob/master/src/operator/tensor/matrix_op-inl.h#L670
Should that ever happen or does that indicate a bug in mxnet? It’s happening consistently but I haven’t narrowed it down to a small test case.
It is a little suspicious that line 664 uses CHECK_GE but line 670 uses CHECK_LT and not CHECK_LE
Here’s the full error message: mxnet.base.MXNetError: [15:30:34] src/operator/tensor/./matrix_op-inl.h:670: Check failed: b < len (21 vs. 21) slicing with begin[0]=21 exceends limit of 21
Beta Was this translation helpful? Give feedback.
All reactions