ThomasDelteil commented on issue #11177: mxnet.base.MXNetError URL: https://github.com/apache/incubator-mxnet/issues/11177#issuecomment-402878886 @RoacherM you are passing to your network `fear1` and `fear2` which are images in the `(C, H, W)` format. You need to "batchify" them to be in the `(N, C, H, W)` format where `N` = `1`. Replace `net(fear1,fear2)` with `net(fear1.expand_dims(axis=0), fear2.expand_dims(axis=0))` @indhub can you please close this issue? @RoacherM if you would like to follow up, please open a thread on https://discuss.mxnet.io, thanks!
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
