aliran tensor:: operasi:: Contoh
#include <math_ops.h>
Menghitung eksponensial x berdasarkan elemen.
Ringkasan
\(y = e^x\).
Fungsi ini menghitung eksponensial setiap elemen dalam tensor masukan. yaitu exp(x)
atau e^(x)
, di mana x
adalah tensor masukan. e
menunjukkan bilangan Euler dan kira-kira sama dengan 2,718281. Output positif untuk setiap input nyata.
x = tf.constant(2.0) tf.math.exp(x) ==> 7.389056
x = tf.constant([2.0, 8.0]) tf.math.exp(x) ==> array([7.389056, 2980.958], dtype=float32)
Untuk bilangan kompleks, nilai eksponensial dihitung sebagai berikut:
e^(x+iy) = e^x * e^iy = e^x * (cos y + i sin y)
Mari kita perhatikan bilangan kompleks 1+1j sebagai contoh. e^1 * (cos 1 + i sin 1) = 2,7182818284590 * (0,54030230586+0,8414709848j)
x = tf.constant(1 + 1j) tf.math.exp(x) ==> 1.4686939399158851+2.2873552871788423j
Argumen:
- ruang lingkup: Objek Lingkup
Pengembalian:
-
Output
: Tensor y.
Konstruktor dan Destruktor | |
---|---|
Exp (const :: tensorflow::Scope & scope, :: tensorflow::Input x) |
Atribut publik | |
---|---|
operation | |
y |
Fungsi publik | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
Atribut publik
operasi
Operation operation
kamu
::tensorflow::Output y
Fungsi publik
Contoh
Exp( const ::tensorflow::Scope & scope, ::tensorflow::Input x )
simpul
::tensorflow::Node * node() const
operator::tensorflow::Masukan
operator::tensorflow::Input() const
operator::tensorflow::Keluaran
operator::tensorflow::Output() const