You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2020/01/27 18:39:36 UTC

[GitHub] [incubator-mxnet] bryanyzhu commented on issue #9110: 3D dilation support

bryanyzhu commented on issue #9110: 3D dilation support
URL: https://github.com/apache/incubator-mxnet/issues/9110#issuecomment-578891128
 
 
   @stu1130 @sandeep-krishnamurthy Hi, may I ask the status of this issue? It seems until now, dilation in 3D Conv is not supported in MXNet. I tried the same code snippet, the error still shows `Dilate is not supported in 3d convolution`
   
   ```
   import mxnet as mx
   data = mx.nd.arange(1029).reshape((3,1,7,7,7))
   
   x = mx.sym.Variable('data', shape=(3,1,7,7,7))
   conv3D = mx.sym.Convolution(data=x, kernel=(3, 3, 3), pad=(2, 2, 2), dilate=(2, 2, 2), num_filter=2)
   conv3D_exe = conv3D.simple_bind(mx.gpu(),data=data.shape)
   ```

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


With regards,
Apache Git Services