hi this is Ravi Krian
i am having a small Doubt
the Diffrence between both
rank_3_tenspr =tf.Tensor(
[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23
24 ,25, 26, 27, 28, 29], shape=(30,), dtype=int32)
What is the Diffrence between both …?
print(tf.reshape(rank_3_tensor, [2, 3, 5]), “\n”) ## Y this is a Bad Example
Vs
print(tf.reshape(rank_3_tensor, [3*2, 5]), “\n”)## Y this is a good example