用法:
mxnet.contrib.ndarray.index_array(data=None, axes=_Null, out=None, name=None, **kwargs)
out:- 此函數的輸出。
NDArray 或 NDArray 列表
參數:
返回:
返回類型:
返回輸入數組的索引數組。
對於形狀為
index_array
返回一個 數組idx
,其中 。 的輸入數組,此外,當指定參數
axes
時,idx
將是一個 數組,其中m
是axes
的長度,並且以下等式將成立: 。例子:
x = mx.nd.ones((3, 2)) mx.nd.contrib.index_array(x) = [[[0 0] [0 1]] [[1 0] [1 1]] [[2 0] [2 1]]] x = mx.nd.ones((3, 2, 2)) mx.nd.contrib.index_array(x, axes=(1, 0)) = [[[[0 0] [0 0]] [[1 0] [1 0]]] [[[0 1] [0 1]] [[1 1] [1 1]]] [[[0 2] [0 2]] [[1 2] [1 2]]]]
相關用法
- Python mxnet.contrib.ndarray.index_copy用法及代碼示例
- Python mxnet.contrib.ndarray.ifft用法及代碼示例
- Python mxnet.contrib.ndarray.hawkesll用法及代碼示例
- Python mxnet.contrib.ndarray.SparseEmbedding用法及代碼示例
- Python mxnet.contrib.ndarray.group_adagrad_update用法及代碼示例
- Python mxnet.contrib.ndarray.fft用法及代碼示例
- Python mxnet.contrib.ndarray.boolean_mask用法及代碼示例
- Python mxnet.contrib.ndarray.dgl_subgraph用法及代碼示例
- Python mxnet.contrib.ndarray.edge_id用法及代碼示例
- Python mxnet.contrib.ndarray.ModulatedDeformableConvolution用法及代碼示例
- Python mxnet.contrib.ndarray.arange_like用法及代碼示例
- Python mxnet.contrib.ndarray.box_nms用法及代碼示例
- Python mxnet.contrib.ndarray.dgl_csr_neighbor_non_uniform_sample用法及代碼示例
- Python mxnet.contrib.ndarray.dgl_csr_neighbor_uniform_sample用法及代碼示例
- Python mxnet.contrib.ndarray.dgl_adjacency用法及代碼示例
- Python mxnet.contrib.ndarray.count_sketch用法及代碼示例
- Python mxnet.contrib.ndarray.box_non_maximum_suppression用法及代碼示例
- Python mxnet.contrib.ndarray.DeformableConvolution用法及代碼示例
- Python mxnet.contrib.ndarray.dgl_graph_compact用法及代碼示例
- Python mxnet.contrib.ndarray.quadratic用法及代碼示例
- Python mxnet.contrib.ndarray.allclose用法及代碼示例
- Python mxnet.contrib.symbol.SparseEmbedding用法及代碼示例
- Python mxnet.contrib.symbol.edge_id用法及代碼示例
- Python mxnet.contrib.symbol.dgl_graph_compact用法及代碼示例
- Python mxnet.contrib.symbol.dgl_adjacency用法及代碼示例
注:本文由純淨天空篩選整理自apache.org大神的英文原創作品 mxnet.contrib.ndarray.index_array。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。