Python – tensorflow.matemáticas.piso()

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. floor() se usa para encontrar el valor de piso sabio del elemento de la entrada, es decir, el entero más grande no mayor que x

Sintaxis: tensorflow.math.floor(x, nombre)

Parámetros: 

  •  x: es un tensor y los tipos permitidos para este tensor son bfloat16, half, float32, float64.
  • nombre: Es un argumento opcional que define el nombre de la operación.

Devoluciones: Devuelve un tensor del mismo tipo que x.
 

Ejemplo 1:

Python3

# importing the library
import tensorflow as tf
 
# initializing the input
a = tf.constant([1.5, 2.7, 3.9, 1.2, 1.8], dtype = tf.float64)
 
# printing the input
print('a: ',a)
 
# Finding the floor value
r = tf.math.floor(a)
 
# printing the result
print("Result: ",r)

Producción:

a:  tf.Tensor([1.5 2.7 3.9 1.2 1.8], shape=(5,), dtype=float64)
Result:  tf.Tensor([1. 2. 3. 1. 1.], shape=(5,), dtype=float64))

Ejemplo 2: En este ejemplo se usa el tensor 2-D.

Python3

# importing the library
import tensorflow as tf
 
# initializing the input
a = tf.constant([[1.5, 2.7], [3.9, 1.2]], dtype = tf.float64)
 
# printing the input
print('a: ',a)
 
# Finding the floor value
r = tf.math.floor(a)
 
# printing the result
print('Result: ',r)

Producción:

a:  tf.Tensor(
[[1.5 2.7]
 [3.9 1.2]], shape=(2, 2), dtype=float64)
Result:  tf.Tensor(
[[1. 2.]
 [3. 1.]], shape=(2, 2), dtype=float64)

Ejemplo 3: en este ejemplo, se usa un tensor de tipo no válido. Provocará NotFoundError.

Python3

# importing the library
import tensorflow as tf
 
# initializing the input
a = tf.constant([1.5, 2.7, 3.9, 1.2, 1.8], dtype = tf.complex128)
 
# printing the input
print('a: ',a)
 
# Finding the floor value
r = tf.math.floor(a)

Producción:

a:  tf.Tensor([1.5+0.j 2.7+0.j 3.9+0.j 1.2+0.j 1.8+0.j], shape=(5,), dtype=complex128)

---------------------------------------------------------------------------

NotFoundError                             Traceback (most recent call last)

 in ()
      6 
      7 # Finding the floor value
----> 8 r = tf.math.floor(a)

2 frames

/usr/local/lib/python3.6/dist-packages/six.py in raise_from(value, from_value)

NotFoundError: Could not find valid device for node.
Node:{{node Floor}}
All kernels registered for op Floor :
  device='XLA_GPU'; T in [DT_FLOAT, DT_DOUBLE, DT_BFLOAT16, DT_HALF]
  device='XLA_CPU'; T in [DT_FLOAT, DT_DOUBLE, DT_BFLOAT16, DT_HALF]
  device='XLA_CPU_JIT'; T in [DT_FLOAT, DT_DOUBLE, DT_BFLOAT16, DT_HALF]
  device='XLA_GPU_JIT'; T in [DT_FLOAT, DT_DOUBLE, DT_BFLOAT16, DT_HALF]
  device='GPU'; T in [DT_DOUBLE]
  device='GPU'; T in [DT_HALF]
  device='GPU'; T in [DT_FLOAT]
  device='CPU'; T in [DT_DOUBLE]
  device='CPU'; T in [DT_HALF]
  device='CPU'; T in [DT_FLOAT]
 [Op:Floor]

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 *