Function
softsign
Return `(x/(1+|x|))`, where x is Tensor.
(x)
Source from the content-addressed store, hash-verified
| 2914 | |
| 2915 | |
| 2916 | def softsign(x): |
| 2917 | """ |
| 2918 | Return `(x/(1+|x|))`, where x is Tensor. |
| 2919 | """ |
| 2920 | return SoftSign()(x)[0] |
| 2921 | |
| 2922 | |
| 2923 | class Sqrt(Operator): |
Tested by
no test coverage detected