tf.contrib.distributions.softplus_inverse
Вычисляет обратную softplus-функцию, т.е., x = softplus_inverse(softplus(x)).
tf.contrib.distributions.softplus_inverse(
x, name=None
)
Математически этот оператор эквивалентен:
softplus_inverse = log(exp(x) - 1.)
| Аргументы | |
|---|---|
x | Tensor. Неотрицательное (не проверяется), с плавающей точкой. |
name | Имя операции (необязательно). |
| Возвращаемые значения | |
|---|---|
Tensor. Имеет тот же тип/форму, что и вход x. |
© 2020 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/versions/r1.15/api_docs/python/tf/contrib/distributions/softplus_inverse