W3cubDocs

/TensorFlow Python

tf.contrib.distributions.softplus_inverse

tf.contrib.distributions.softplus_inverse(
    x,
    name=None
)

Defined in tensorflow/python/ops/distributions/util.py.

See the guide: Statistical Distributions (contrib) > Utilities

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

Mathematically this op is equivalent to:

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

Args:

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

Returns:

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

© 2018 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/contrib/distributions/softplus_inverse