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.
is_non_decreasing() devuelve verdadero si x no es decreciente.
Sintaxis: tensorflow.math.is_non_decreasing(x, nombre)
Parámetros:
- x: Es un tensor numérico.
- name(opcional): Define el nombre de la operación
Devuelve: Devuelve un tensor de dtype bool.
Ejemplo 1:
Python3
# importing the library import tensorflow as tf # Initializing the input tensor a = tf.constant([2, 3, 3, 5], dtype = tf.float64) # Printing the input tensor print('a: ', a) # Calculating the result res = tf.math.is_non_decreasing(a) # Printing the result print('Result: ', res)
Producción:
a: tf.Tensor([2. 3. 3. 5.], shape=(4, ), dtype=float64) Result: tf.Tensor(True, shape=(), dtype=bool)
Ejemplo 2:
Python3
# Importing the library import tensorflow as tf # Initializing the input tensor a = tf.constant([7, 8, 13, 11], dtype = tf.float64) # Printing the input tensor print('a: ', a) # Calculating the result res = tf.math.is_non_decreasing(a) # Printing the result print('Result: ', res)
Producción:
a: tf.Tensor([ 7. 8. 13. 11.], shape=(4, ), dtype=float64) Result: tf.Tensor(False, shape=(), dtype=bool)
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