Spec-Zone.ru › TensorFlow 2.4

tf.math.expm1

Вычисляет exp(x) - 1 поэлементно.

Просмотр псевдонимов

Псевдонимы для миграции

См. Руководство по миграции для получения дополнительных сведений.

tf.compat.v1.expm1, tf.compat.v1.math.expm1

tf.math.expm1(
    x, name=None
)

т.е. exp(x) - 1 или e^(x) - 1, где x — входной тензор. e обозначает число Эйлера и приблизительно равно 2,718281.

x = tf.constant(2.0)
tf.math.expm1(x) ==> 6.389056

x = tf.constant([2.0, 8.0])
tf.math.expm1(x) ==> array([6.389056, 2979.958], dtype=float32)

x = tf.constant(1 + 1j)
tf.math.expm1(x) ==> (0.46869393991588515+2.2873552871788423j)
Аргументы
x A Tensor. Должен быть одного из следующих типов: bfloat16, half, float32, float64, complex64, complex128.
name Имя операции (необязательно).
Возвращаемое значение
A 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/r2.4/api_docs/python/tf/math/expm1

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API