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.
indices se utiliza para encontrar los índices de la rebanada.
Sintaxis: tensorflow.IndexedSlices.indices
Devoluciones: Devuelve un Tensor 1-D que contiene los índices de corte.
Ejemplo 1:
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, [0]) # Finding Graph indices = res.indices # Printing the result print('Indices: ', indices)
Producción:
data: tf.Tensor([1 2 3], shape=(3, ), dtype=int32) Indices: [0]
Ejemplo 2:
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, [0, 1]) # Finding Graph indices = res.indices # Printing the result print('Indices: ', indices)
Producción:
data: tf.Tensor( [[1 2 3] [4 5 6]], shape=(2, 3), dtype=int32) Indices: [0, 1]
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