I am trying to create a tensor with numpy attribute and tried this:
tensor1 = tf.reshape(tf.constant([100, 100, 100], dtype=tf.int64), (-1, 1))
print(tensor1)
#tensor1
tf.Tensor(
[[100]
[100]
[100]], shape=(3, 1), dtype=int64)
But the output does not show the tensor ID or the numpy attribute where the values will be an array. How do I create a tensor of that format