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


Python mxnet.ndarray.softmin用法及代碼示例


用法:

mxnet.ndarray.softmin(data=None, axis=_Null, temperature=_Null, dtype=_Null, use_length=_Null, out=None, name=None, **kwargs)

參數

  • data(NDArray) - 輸入數組。
  • axis(int, optional, default='-1') - 計算 softmax 的軸。
  • temperature(double or None, optional, default=None) - softmax 中的溫度參數
  • dtype({None, 'float16', 'float32', 'float64'},optional, default='None') - 輸出的 DType,以防無法推斷。如果未定義(dtype=None),則默認與輸入的 dtype 相同。
  • use_length(boolean or None, optional, default=0) - 是否使用長度輸入作為數據輸入的掩碼。
  • out(NDArray, optional) - 輸出 NDArray 來保存結果。

返回

out- 此函數的輸出。

返回類型

NDArray 或 NDArray 列表

應用 softmin 函數。

結果數組包含範圍 (0,1) 中的元素,並且沿給定軸的元素總和為 1。

對於

t 是 softmax 函數中的溫度參數。默認情況下,t 等於 1.0

例子:

x = [[ 1.  2.  3.]
     [ 3.  2.  1.]]

softmin(x,axis=0) = [[ 0.88079703,  0.5,  0.11920292],
                     [ 0.11920292,  0.5,  0.88079703]]

softmin(x,axis=1) = [[ 0.66524094,  0.24472848,  0.09003057],
                     [ 0.09003057,  0.24472848,  0.66524094]]

相關用法


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