troyliu0105 commented on issue #18834:
URL: 
https://github.com/apache/incubator-mxnet/issues/18834#issuecomment-753721743


   @szha I build the most recently master branch. cuz gluoncv is not compatible 
with mxnet 2.0 (can't pass version assert), so I use previous exported weight 
to test like below:
   
   ```python
   from gluoncv import model_zoo, data, utils
   from matplotlib import pyplot as plt
   import mxnet as mx
   from mxnet import gluon
   deserialized_net = gluon.nn.SymbolBlock.imports("yolo-symbol.json", 
['data'], "yolo-0000.params", ctx=mx.gpu())
   image = mx.nd.random.normal(shape=(1, 3, 1000, 1000), ctx=mx.gpu())
   print(deserialized_net(image))
   ```
   
   and this issue still occurs.
   <img width="1388" alt="image" 
src="https://user-images.githubusercontent.com/5518286/103495301-4757ab00-4e75-11eb-9a1a-b8cf2f6f9b0f.png";>
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to