tf.math.erfcinv
Вычисляет обратную функцию дополнительной функции ошибки.
tf.math.erfcinv(
x, name=None
)
Учитывая x, вычислите обратную функцию дополнительной функции ошибки для x. Эта функция является обратной к tf.math.erfc и определена на [0, 2].
tf.math.erfcinv([0., 0.2, 1., 1.5, 2.])
<tf.Tensor: shape=(5,), dtype=float32, numpy=
array([ inf, 0.9061935, -0. , -0.4769363, -inf],
dtype=float32)>
| Аргументы | |
|---|---|
x | Tensor с типом float или double. |
name | Имя операции (необязательно). |
| Возвращаемые значения | |
|---|---|
Обратная функция дополнительной функции ошибки для x. |
Совместимость с Numpy
Эквивалентно scipy.special.erfcinv
© 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/r2.4/api_docs/python/tf/math/erfcinv