当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python SciPy special.softmax用法及代码示例


本文简要介绍 python 语言中 scipy.special.softmax 的用法。

用法:

scipy.special.softmax(x, axis=None)#

计算 softmax 函数。

softmax 函数通过计算每个元素的 index 除以所有元素的 index 之和来转换集合的每个元素。也就是说,如果 x 是一维 numpy 数组:

softmax(x) = np.exp(x)/sum(np.exp(x))

参数

x array_like

输入数组。

axis int 或整数元组,可选

沿计算值的轴。默认为无,softmax 将在整个数组 x 上计算。

返回

s ndarray

与 x 形状相同的数组。结果将沿指定轴求和为 1。

注意

向量 的softmax函数 的公式是

softmax 函数是 logsumexp 的梯度。

该实现使用移位来避免溢出。有关更多详细信息,请参阅[1]。

参考

[1]

P. 布兰查德,D.J. Higham, N.J. Higham,“准确计算 log-sum-exp 和 softmax 函数”,IMA 数值分析杂志,第 41 卷(4),DOI:10.1093/imanum/draa038

例子

>>> import numpy as np
>>> from scipy.special import softmax
>>> np.set_printoptions(precision=5)
>>> x = np.array([[1, 0.5, 0.2, 3],
...               [1,  -1,   7, 3],
...               [2,  12,  13, 3]])
...

计算整个数组的 softmax 变换。

>>> m = softmax(x)
>>> m
array([[  4.48309e-06,   2.71913e-06,   2.01438e-06,   3.31258e-05],
       [  4.48309e-06,   6.06720e-07,   1.80861e-03,   3.31258e-05],
       [  1.21863e-05,   2.68421e-01,   7.29644e-01,   3.31258e-05]])
>>> m.sum()
1.0

沿第一个轴(即列)计算 softmax 变换。

>>> m = softmax(x, axis=0)
>>> m
array([[  2.11942e-01,   1.01300e-05,   2.75394e-06,   3.33333e-01],
       [  2.11942e-01,   2.26030e-06,   2.47262e-03,   3.33333e-01],
       [  5.76117e-01,   9.99988e-01,   9.97525e-01,   3.33333e-01]])
>>> m.sum(axis=0)
array([ 1.,  1.,  1.,  1.])

沿第二个轴(即行)计算 softmax 变换。

>>> m = softmax(x, axis=1)
>>> m
array([[  1.05877e-01,   6.42177e-02,   4.75736e-02,   7.82332e-01],
       [  2.42746e-03,   3.28521e-04,   9.79307e-01,   1.79366e-02],
       [  1.22094e-05,   2.68929e-01,   7.31025e-01,   3.31885e-05]])
>>> m.sum(axis=1)
array([ 1.,  1.,  1.])

相关用法


注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.softmax。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。