blob: ca5fe4dfe5fc714225f377dcd4aae1fdea441510 [file] [log] [blame]
``mx.symbol.shape_array``
==================================================
Description
----------------------
Returns a 1D int64 array containing the shape of data.
**Example**::
shape_array([[1,2,3,4], [5,6,7,8]]) = [2,4]
Usage
----------
.. code:: r
mx.symbol.shape_array(...)
Arguments
------------------
+----------------------------------------+------------------------------------------------------------+
| Argument | Description |
+========================================+============================================================+
| ``data`` | NDArray-or-Symbol. |
| | |
| | Input Array. |
+----------------------------------------+------------------------------------------------------------+
| ``name`` | string, optional. |
| | |
| | Name of the resulting symbol. |
+----------------------------------------+------------------------------------------------------------+
Value
----------
``out`` The result mx.symbol
Link to Source Code: http://github.com/apache/incubator-mxnet/blob/1.6.0/src/operator/tensor/elemwise_unary_op_basic.cc#L574