提交 56d624f5 编写于 作者: M Megvii Engine Team

feat(mge): rename log_softmax -> logsoftmax

GitOrigin-RevId: 40ccfea5a764a2ba37d5e53bbfbac65b8bf84d79
上级 164d9cdf
...@@ -40,7 +40,7 @@ __all__ = [ ...@@ -40,7 +40,7 @@ __all__ = [
"local_conv2d", "local_conv2d",
"logsigmoid", "logsigmoid",
"logsumexp", "logsumexp",
"log_softmax", "logsoftmax",
"matmul", "matmul",
"max_pool2d", "max_pool2d",
"nms", "nms",
...@@ -421,7 +421,7 @@ def softplus(inp: Tensor) -> Tensor: ...@@ -421,7 +421,7 @@ def softplus(inp: Tensor) -> Tensor:
return log1p(exp(-abs(inp))) + relu(inp) return log1p(exp(-abs(inp))) + relu(inp)
def log_softmax(inp: Tensor, axis: Union[int, Sequence[int]]) -> Tensor: def logsoftmax(inp: Tensor, axis: Union[int, Sequence[int]]) -> Tensor:
r"""Applies the :math:`\log(\text{Softmax}(x))` function to an n-dimensional r"""Applies the :math:`\log(\text{Softmax}(x))` function to an n-dimensional
input Tensor. The LogSoftmax formulation can be simplified as: input Tensor. The LogSoftmax formulation can be simplified as:
...@@ -437,7 +437,7 @@ def log_softmax(inp: Tensor, axis: Union[int, Sequence[int]]) -> Tensor: ...@@ -437,7 +437,7 @@ def log_softmax(inp: Tensor, axis: Union[int, Sequence[int]]) -> Tensor:
= x - logsumexp(x) = x - logsumexp(x)
:param inp: input tensor. :param inp: input tensor.
:param axis: axis along which log_softmax will be applied. :param axis: axis along which logsoftmax will be applied.
Examples: Examples:
...@@ -448,7 +448,7 @@ def log_softmax(inp: Tensor, axis: Union[int, Sequence[int]]) -> Tensor: ...@@ -448,7 +448,7 @@ def log_softmax(inp: Tensor, axis: Union[int, Sequence[int]]) -> Tensor:
import megengine.functional as F import megengine.functional as F
x = tensor(np.arange(-5, 5, dtype=np.float32)).reshape(2,5) x = tensor(np.arange(-5, 5, dtype=np.float32)).reshape(2,5)
y = F.log_softmax(x, axis=1) y = F.logsoftmax(x, axis=1)
print(y.numpy()) print(y.numpy())
Outputs: Outputs:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册