tensoreflusso:: ops:: Espm1

#include <math_ops.h>

Calcola exp(x) - 1 in termini di elemento.

Riepilogo

cioè exp(x) - 1 o e^(x) - 1 , dove x è il tensore di input. e indica il numero di Eulero ed è approssimativamente uguale a 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)
  

Argomenti:

Ritorna:

Costruttori e distruttori

Expm1 (const :: tensorflow::Scope & scope, :: tensorflow::Input x)

Attributi pubblici

operation
y

Funzioni pubbliche

node () const
::tensorflow::Node *
operator::tensorflow::Input () const
operator::tensorflow::Output () const

Attributi pubblici

operazione

Operation operation

::tensorflow::Output y

Funzioni pubbliche

Espm1

 Expm1(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input x
)

nodo

::tensorflow::Node * node() const 

operatore::tensorflow::Input

 operator::tensorflow::Input() const 

operatore::tensorflow::Output

 operator::tensorflow::Output() const