Python – tensorflow.math.reduce_max()

TensorFlow es una biblioteca Python de código abierto diseñada por Google para desarrollar modelos de aprendizaje automático y redes neuronales de aprendizaje profundo.

reduce_max() se usa para encontrar el máximo de elementos a través de las dimensiones de un tensor.

Sintaxis: tensorflow.math.reduce_max( input_tensor, axis, keepdims, name)

Parámetros:

  • input_tensor: Es un tensor numérico a reducir.
  • eje (opcional): Representa las dimensiones a reducir. Su valor debe estar en el rango [-rank(input_tensor), rank(input_tensor)). Si no se da ningún valor para esto, todas las dimensiones se reducen.
  • keepdims (opcional): su valor predeterminado es falso. Si se establece en Verdadero, conservará la dimensión reducida con longitud 1.
  • name(opcional): Define el nombre de la operación.

Devuelve: Devuelve un tensor.

Ejemplo 1:

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.reduce_max(a)
 
# Printing the result
print('Result: ', res)

Producción:

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

Ejemplo 2:

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.reduce_max(a, axis = 1, keepdims = True)
 
# Printing the result
print('Result: ', res)

Producción:

Input:  tf.Tensor(
[[1. 2.]
 [3. 4.]], shape=(2, 2), dtype=float64)
Result:  tf.Tensor(
[[2.]
 [4.]], shape=(2, 1), 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 *