mikemwx commented on a change in pull request #15370: [numpy][doc-fix] mean,
transpose, stack, split, log2, rint and radians
URL: https://github.com/apache/incubator-mxnet/pull/15370#discussion_r299273610
##########
File path: python/mxnet/_numpy_op_doc.py
##########
@@ -223,3 +223,46 @@ def _np_dot(a, b, out=None):
array(29884.)
"""
pass
+
+
+def _np_transpose(a, axes=None):
+ """
+ transpose(a, axes=None)
+
+ Permute the dimensions of an array.
+
+ Parameters
+ ----------
+ a : ndarray
+ Input array.
+ axes : list of ints, optional
+ By default, reverse the dimensions,
+ otherwise permute the axes according to the values given.
+
+ Returns
+ -------
+ p : ndarray
+ a with its axes permuted.
+
+ Notes
+ -----
+ This function differs from the original `numpy.transpose
+
<https://docs.scipy.org/doc/numpy/reference/generated/numpy.transpose.html>`_ in
+ the following way(s):
+
+ - only ndarray is accepted as valid input, python iterables are not
supported
+
+ Examples
+ --------
+ >>> x = np.arange(4).reshape((2,2))
+ >>> x
+ array([[0., 1.],
Review comment:
> dtype=float32 is the default type and will not appear in the up to date
version.
Thank you for reminding. Will fix that.
----------------------------------------------------------------
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