I was trying to execute the code below in Google Colab for learning purposes.I got this message when i executed the following code.
Tensor("args_0:0", shape=(28, 28, 1), dtype=float32)
def normalize(images, labels):
print(images)
images = tf.cast(images, tf.float32)
print(images)
images /= 255
print(images)
return images, labels
I am trying to understand what this message means but I am not able ti understand it. Tried searching in web , but couldn't find much resources. Can anyone say what this statements mean?