forked from apache/mxnet
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update ndarray.nd, remove
invoke
from excluded members (#137)
remove __weakref__ from SparseNDArray add data indice to doc revert dlpack update revert mxdoc changes move methods from BaseSparseNDarray to csrndarray and rwosparse ndarray
- Loading branch information
1 parent
d511938
commit 6956431
Showing
4 changed files
with
359 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
"""ndarray module""" | ||
"""NDArray API of MXNet.""" | ||
|
||
from . import _internal | ||
from . import op | ||
from .op import CachedOp | ||
from .ndarray import NDArray, concatenate, _DTYPE_NP_TO_MX, _DTYPE_MX_TO_NP | ||
from .ndarray import ones, add, arange, divide, equal, full, greater, greater_equal, imdecode | ||
from .ndarray import lesser, lesser_equal, maximum, minimum, moveaxis, multiply, negative, not_equal | ||
from .ndarray import onehot_encode, power, subtract, true_divide, waitall, _new_empty_handle | ||
# pylint: disable=wildcard-import | ||
from .ndarray import * | ||
from .ndarray_utils import load, save, zeros, empty, array | ||
from .sparse_ndarray import _ndarray_cls, todense | ||
from .sparse_ndarray import csr, row_sparse, BaseSparseNDArray, RowSparseNDArray, CSRNDArray | ||
from .sparse_ndarray import _ndarray_cls | ||
from .sparse_ndarray import csr, row_sparse, BaseSparseNDArray, todense, RowSparseNDArray, CSRNDArray |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.