Joey Kim
Joey Kim

Reputation: 179

Tensorflow activation functions

We can call tf.nn.relu or tf.nn.softplusand so on.

I also saw the tf.tanh.

Is there a Inverse Hyperbolic Tangent function in the Tensorflow?

Upvotes: 0

Views: 610

Answers (1)

sygi
sygi

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

Related Questions