MCPcopy Create free account
hub / github.com/apache/singa / softplus

Function softplus

python/singa/autograd.py:2991–2995  ·  view source on GitHub ↗

Return `ln(exp(x) + 1)`, where x is Tensor.

(x)

Source from the content-addressed store, hash-verified

2989
2990
2991def softplus(x):
2992 """
2993 Return `ln(exp(x) + 1)`, where x is Tensor.
2994 """
2995 return SoftPlus()(x)[0]
2996
2997
2998class Sub(Operator):

Callers 1

Cuda>Method · 0.85

Calls 1

SoftPlusClass · 0.70

Tested by

no test coverage detected