zhanghang1989 commented on issue #7377: gluon.nn.Conv2D initialization int 
stride not handled correctly
URL: 
https://github.com/apache/incubator-mxnet/issues/7377#issuecomment-321041311
 
 
   ```python
   import mxnet as mx   
   from mxnet import gluon
   from mxnet.gluon import nn
   layer=nn.Conv2D(in_channels=3,                               
                      channels=3,                      
                      kernel_size=1, stride=1)
   layer.initialize() 
   x=mx.nd.random_normal(loc=0, scale=1, shape=(2, 3, 224, 224))
   layer(x) 
   ```
   will produce the Error ``Floating point exception``
 
----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to