Reputation: 179
We can call tf.nn.relu
or tf.nn.softplus
and so on.
I also saw the tf.tanh
.
Is there a Inverse Hyperbolic Tangent function in the Tensorflow?
Upvotes: 0
Views: 610
Reputation: 4637
No, but you can express it as:
artanh(x) = 1/2 * ln ((1 + x)/(1 - x))
see: Inverse functions as logarithms
Upvotes: 3