Friday, January 23, 2026
HomeLanguagesPython – tensorflow.IndexedSlices.indices Attribute

Python – tensorflow.IndexedSlices.indices Attribute

TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks.

indices is used to find the indices of the slice.

Syntax: tensorflow.IndexedSlices.indices

Returns: It returns a 1-D Tensor containing the indices of slice.

Example 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)


Output:


data:  tf.Tensor([1 2 3], shape=(3, ), dtype=int32)
Indices:  [0]

Example 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)


Output:


data:  tf.Tensor(
[[1 2 3]
 [4 5 6]], shape=(2, 3), dtype=int32)
Indices:  [0, 1]

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32475 POSTS0 COMMENTS
Milvus
119 POSTS0 COMMENTS
Nango Kala
6847 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7221 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6912 POSTS0 COMMENTS