當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python mxnet.ndarray.op.sort用法及代碼示例


用法:

mxnet.ndarray.op.sort(data=None, axis=_Null, is_ascend=_Null, out=None, name=None, **kwargs)

參數

  • data(NDArray) - 輸入數組
  • axis(int or None, optional, default='-1') - 選擇輸入張量排序的軸。如果未給出,則使用展平數組。默認值為 -1。
  • is_ascend(boolean, optional, default=1) - 是升序還是降序排序。
  • out(NDArray, optional) - 輸出 NDArray 來保存結果。

返回

out- 此函數的輸出。

返回類型

NDArray 或 NDArray 列表

沿給定軸返回輸入數組的排序副本。

例子:

x = [[ 1, 4],
     [ 3, 1]]

// sorts along the last axis
sort(x) = [[ 1.,  4.],
           [ 1.,  3.]]

// flattens and then sorts
sort(x, axis=None) = [ 1.,  1.,  3.,  4.]

// sorts along the first axis
sort(x, axis=0) = [[ 1.,  1.],
                   [ 3.,  4.]]

// in a descend order
sort(x, is_ascend=0) = [[ 4.,  1.],
                        [ 3.,  1.]]

相關用法


注:本文由純淨天空篩選整理自apache.org大神的英文原創作品 mxnet.ndarray.op.sort。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。