Open In App
Related Articles

Python – tensorflow.IndexedSlices.values Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

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

values is used to get the values of the slice.

Syntax: tensorflow.IndexedSlices.values

Returns: It returns a Tensor containing the values of the slice.

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


Output:

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)

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


Output:

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



Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 28 Jul, 2020
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials