Function
softplus
Return `ln(exp(x) + 1)`, where x is Tensor.
(x)
Source from the content-addressed store, hash-verified
| 2989 | |
| 2990 | |
| 2991 | def softplus(x): |
| 2992 | """ |
| 2993 | Return `ln(exp(x) + 1)`, where x is Tensor. |
| 2994 | """ |
| 2995 | return SoftPlus()(x)[0] |
| 2996 | |
| 2997 | |
| 2998 | class Sub(Operator): |
Tested by
no test coverage detected