marcoabreu commented on a change in pull request #9963: Onnx Module to import 
onnx models into mxnet
URL: https://github.com/apache/incubator-mxnet/pull/9963#discussion_r172999228
 
 

 ##########
 File path: tests/python/unittest/test_layers.py
 ##########
 @@ -50,5 +50,29 @@ def test_reduce_mean(self):
         numpy_op = np.mean(input1, axis=(1, 0), keepdims=True)
         npt.assert_almost_equal(output, numpy_op, decimal=5)
 
+    def test_reduce_min(self):
+        """Test for ReduceMin operator"""
+        node_def = helper.make_node("ReduceMin", ["input1"], ["output"], 
axes=[1, 0], keepdims=1)
+        input1 = self._random_array([3, 10])
 
 Review comment:
   Please make use of the @with_seed decorator for all tests using randomized 
data

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