Softmax

class paddle.sparse.nn. Softmax ( axis=- 1, name=None ) [源代码]

稀疏 Softmax 激活层,创建一个可调用对象以计算输入 xSoftmax

当输入 xSparseCsrTensor 时,仅支持 axis=-1,是由于 Csr 稀疏存储格式,更适合按行读取数据。

如果将 x 从稀疏矩阵转换为稠密矩阵, \(i\) 代表行数, \(j\) 代表列数,且 axis=-1 时有如下公式:

\[softmax_ij = \frac{\exp(x_ij - max_j(x_ij))}{\sum_j(exp(x_ij - max_j(x_ij))}\]

参数

  • axis (int, 可选) - 指定对输入 SparseTensor 计算 softmax 的轴。对于 SparseCsrTensor,仅支持 axis=-1。默认值:-1。

  • name (str,可选) - 具体用法请参见 Name,一般无需设置,默认值为 None。

形状

  • input:任意形状的 SparseTensor。

  • output:和 input 具有相同形状和数据类型的 SparseTensor。

代码示例

import paddle
import numpy as np
paddle.seed(100)

mask = np.random.rand(3, 4) < 0.5
np_x = np.random.rand(3, 4) * mask
# [[0.         0.         0.96823406 0.19722934]
#  [0.94373937 0.         0.02060066 0.71456372]
#  [0.         0.         0.         0.98275049]]

csr = paddle.to_tensor(np_x).to_sparse_csr()
# Tensor(shape=[3, 4], dtype=paddle.float64, place=Place(gpu:0), stop_gradient=True,
#        crows=[0, 2, 5, 6],
#        cols=[2, 3, 0, 2, 3, 3],
#        values=[0.96823406, 0.19722934, 0.94373937, 0.02060066, 0.71456372,
#                0.98275049])

softmax = paddle.sparse.nn.Softmax()
out = softmax(csr)
# Tensor(shape=[3, 4], dtype=paddle.float64, place=Place(gpu:0), stop_gradient=True,
#        crows=[0, 2, 5, 6],
#        cols=[2, 3, 0, 2, 3, 3],
#        values=[0.68373820, 0.31626180, 0.45610887, 0.18119845, 0.36269269,
#                1.        ])