Friday, August 29, 2025
HomeLanguagesPython – tensorflow.IndexedSlices.dtype Attribute

Python – tensorflow.IndexedSlices.dtype Attribute

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

dtype is used to find the type of values in Tensor.

Syntax: tensorflow.IndexedSlices.dtype

Returns: It returns the dtype of elements in the tensor.

Example 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, [0])
  
# Finding dtype 
dtype = res.dtype
  
# Printing the result
print('dtype: ', dtype)


Output:

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

Example 2:

Python3




# Importing the library
import tensorflow as tf
  
# Initializing the input
data = tf.constant([[1, 2, 3], [4, 5, 6]], dtype = tf.float32)
  
# Printing the input
print('data: ', data)
  
# Calculating result
res = tf.IndexedSlices(data, [0])
  
# Finding dtype 
dtype = res.dtype
  
# Printing the result
print('dtype: ', dtype)


Output:

data:  tf.Tensor(
[[1. 2. 3.]
 [4. 5. 6.]], shape=(2, 3), dtype=float32)
dtype:  <dtype: 'float32'>


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

Most Popular

Dominic
32246 POSTS0 COMMENTS
Milvus
80 POSTS0 COMMENTS
Nango Kala
6615 POSTS0 COMMENTS
Nicole Veronica
11787 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11835 POSTS0 COMMENTS
Shaida Kate Naidoo
6731 POSTS0 COMMENTS
Ted Musemwa
7011 POSTS0 COMMENTS
Thapelo Manthata
6685 POSTS0 COMMENTS
Umr Jansen
6699 POSTS0 COMMENTS