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.
valores se utiliza para obtener los valores de la rebanada.
Sintaxis: tensorflow.IndexedSlices.values
Devoluciones: Devuelve un Tensor que contiene los valores de la rebanada.
Ejemplo 1:
Python3
# Importing the library import tensorflow as tf # Initializing the input data = tf.constant([[1, 2, 3], [4, 5, 6]]) # Printing the input print('data: ', data) # Calculating result res = tf.IndexedSlices(data, [1]) # Finding values values = res.values # Printing the result print('Values: ', values)
Producción:
data: tf.Tensor( [[1 2 3] [4 5 6]], shape=(2, 3), dtype=int32) Values: tf.Tensor( [[1 2 3] [4 5 6]], shape=(2, 3), dtype=int32)
Ejemplo 2:
Python3
# Importing the library import tensorflow as tf # Initializing the input data = tf.constant([1, 2, 3]) # Printing the input print('data: ', data) # Calculating result res = tf.IndexedSlices(data, [1]) # Finding values values = res.values # Printing the result print('Values: ', values)
Producción:
data: tf.Tensor([1 2 3], shape=(3, ), dtype=int32) Values: tf.Tensor([1 2 3], shape=(3, ), dtype=int32)
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