apeforest commented on a change in pull request #14779: [WIP] Fully connected, higher order grad URL: https://github.com/apache/incubator-mxnet/pull/14779#discussion_r305546156
########## File path: tests/python/unittest/test_higher_order_grad.py ########## @@ -18,8 +18,14 @@ import math from mxnet import nd, autograd -from mxnet.test_utils import assert_almost_equal, random_arrays, rand_shape_nd +from mxnet.test_utils import assert_almost_equal, random_arrays, rand_shape_nd, same from common import with_seed +import mxnet.autograd as ag +import mxnet.ndarray as nd +from mxnet import gluon +import mxnet +from nose.tools import ok_ Review comment: https://www.python.org/dev/peps/pep-0008/#imports Imports should be grouped in the following order: Standard library imports. Related third party imports. Local application/library specific imports. You should put a blank line between each group of imports. ---------------------------------------------------------------- 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: [email protected] With regards, Apache Git Services
