I have a simple question regarding the shapes of 2 different tensors - tensor_1 and tensor_2.
tensor_1.shapeoutputstorch.Size([784, 1]);tensor_2.shapeoutputstorch.Size([784]).
I understand that the first one is rank-2 tensor, whereas the second is rank-1. What's hard for me is to conceptualize the difference between shape [784, 1] and [784].
Is it correct to think that tensor_1 has 784 rows and 1 column with a scalar inside each place? If so, why can't we call it simply a column vector (which is, in fact, rank-1 tensor), which also has values displayed vertically?
Similarly, can the shape of the second tensor ([784]) be imagined as 784 values inside a horizontal vector?