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
import tensorflow as tf
data = tf.constant([[ 1 , 2 , 3 ], [ 4 , 5 , 6 ]])
print ( 'data: ' , data)
res = tf.IndexedSlices(data, [ 1 ])
values = res.values
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
import tensorflow as tf
data = tf.constant([ 1 , 2 , 3 ])
print ( 'data: ' , data)
res = tf.IndexedSlices(data, [ 1 ])
values = res.values
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