用法:
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 來保存結果。
- data:(
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]]
相關用法
- Python mxnet.ndarray.softmax_cross_entropy用法及代碼示例
- Python mxnet.ndarray.softmax用法及代碼示例
- Python mxnet.ndarray.sort用法及代碼示例
- Python mxnet.ndarray.sparse.trunc用法及代碼示例
- Python mxnet.ndarray.sample_multinomial用法及代碼示例
- Python mxnet.ndarray.stop_gradient用法及代碼示例
- Python mxnet.ndarray.sgd_mom_update用法及代碼示例
- Python mxnet.ndarray.sparse.row_sparse_array用法及代碼示例
- Python mxnet.ndarray.sparse.broadcast_mul用法及代碼示例
- Python mxnet.ndarray.sparse.rsqrt用法及代碼示例
- Python mxnet.ndarray.sparse.sgd_update用法及代碼示例
- Python mxnet.ndarray.shape_array用法及代碼示例
- Python mxnet.ndarray.sample_exponential用法及代碼示例
- Python mxnet.ndarray.sparse.broadcast_plus用法及代碼示例
- Python mxnet.ndarray.sparse.rint用法及代碼示例
- Python mxnet.ndarray.sgd_update用法及代碼示例
- Python mxnet.ndarray.sparse.RowSparseNDArray用法及代碼示例
- Python mxnet.ndarray.sample_poisson用法及代碼示例
- Python mxnet.ndarray.sparse.sign用法及代碼示例
- Python mxnet.ndarray.sparse.floor用法及代碼示例
- Python mxnet.ndarray.sparse.concat用法及代碼示例
- Python mxnet.ndarray.sparse.make_loss用法及代碼示例
- Python mxnet.ndarray.sparse.adagrad_update用法及代碼示例
- Python mxnet.ndarray.sparse.exp用法及代碼示例
- Python mxnet.ndarray.sparse.square用法及代碼示例
注:本文由純淨天空篩選整理自apache.org大神的英文原創作品 mxnet.ndarray.softmin。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。