tf.contrib.distributions.softplus_inverse

View source on GitHub

Computes the inverse softplus, i.e., x = softplus_inverse(softplus(x)).

Mathematically this op is equivalent to:

softplus_inverse = log(exp(x) - 1.)

x Tensor. Non-negative (not enforced), floating-point.
name A name for the operation (optional).

Tensor. Has the same type/shape as input x.