wagamama commented on a change in pull request #14222: Add more support for 
mxnet_to_coreml
URL: https://github.com/apache/incubator-mxnet/pull/14222#discussion_r261014463
 
 

 ##########
 File path: tools/coreml/test/test_mxnet_converter.py
 ##########
 @@ -444,17 +473,39 @@ def test_tiny_conv_random_input_multi_filter(self):
         )
         self._test_mxnet_model(net, input_shape=input_shape, mode='random')
 
+    def test_tiny_conv_random_input_multi_group(self):
+        np.random.seed(1988)
+        input_shape = (1, 16, 10, 10)
+        num_filter = 16
+        num_group = 4
+        kernel = (5, 5)
+        stride = (1, 1)
+        pad = (0, 0)
+        net = mx.sym.Variable('data')
+        net = mx.symbol.Convolution(
+            data=net,
+            num_filter=num_filter,
+            num_group=num_group,
+            kernel=kernel,
+            stride=stride,
+            pad=pad,
+            name='conv_1'
+        )
+        self._test_mxnet_model(net, input_shape=input_shape, mode='random')
+
     def test_conv_random(self):
         np.random.seed(1988)
         input_shape = (1, 3, 10, 10)
         num_filter = 64
+        num_group = 1
 
 Review comment:
   Done in 0189933

----------------------------------------------------------------
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