You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by gi...@git.apache.org on 2017/08/08 18:26:08 UTC

[GitHub] zhanghang1989 commented on issue #7377: gluon.nn.Conv2D initialization int stride not handled correctly

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:
users@infra.apache.org


With regards,
Apache Git Services