how to check data in tensor code example
Example 1: print value of tensor
with tf.Session() as sess: print(product.eval())
Example 2: tensor get value
#print the value of tensor
mytensor.item()
with tf.Session() as sess: print(product.eval())
#print the value of tensor
mytensor.item()