Python – tensorflow.matemáticas.real()

TensorFlow es una biblioteca de Python de código abierto diseñada por Google para desarrollar modelos de aprendizaje automático y redes neuronales de aprendizaje profundo. real() se usa para encontrar la parte real de un tensor en cuanto a elementos.

Sintaxis: tf.math.real(x, nombre)

Parámetro:

  • x: Es el tensor de entrada. Los dtype permitidos para este tensor son bfloat16, half, float32, float64, int32, int64, complex64, complex128.
  • name(opcional): Define el nombre de la operación.

Devuelve:
Devuelve un tensor de dtype float32 o float64. .

Ejemplo 1: Este ejemplo usa tensor real.

Python3

# Importing the library
import tensorflow as tf
  
# Initializing the input tensor
a = tf.constant([1, 2, -3, -4], dtype = tf.float64)
  
# Printing the input tensor
print('Input: ', a)
  
# Calculating result
res = tf.math.real(a)
  
# Printing the result
print('Result: ', res)

Producción:

Input:  tf.Tensor([ 1.  2. -3. -4.], shape=(4, ), dtype=float64)
Result:  tf.Tensor([ 1.  2. -3. -4.], shape=(4, ), dtype=float64)

Ejemplo 2: Este ejemplo usa un tensor complejo.

Python3

# importing the library
import tensorflow as tf
  
# Initializing the input tensor
a = tf.constant([1 + 3j, 2-5j, -3 + 7j, -4-8j], dtype = tf.complex128)
  
# Printing the input tensor
print('Input: ', a)
  
# Calculating result
res = tf.math.real( a)
  
# Printing the result
print('Result: ', res)

Producción:

Input:  tf.Tensor([ 1.+3.j  2.-5.j -3.+7.j -4.-8.j], shape=(4, ), dtype=complex128)
Result:  tf.Tensor([ 1.  2. -3. -4.], shape=(4, ), dtype=float64)

Publicación traducida automáticamente

Artículo escrito por aman neekhara y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *