when we are accessing first element of first section,
ie 0th row - 0th column - 0th section , why dont we use section value as in video explained print(T[0][0]) ??
there is not need to specify which section 0,1,2 ??
Transpose of tensor
hey @lgoyal50_be19 ,
can you please explain your doubt more clearly , its a kind of but confusing.
Thank You .
in tensors we access element by T[0][0], we dont use channel number(3rd dimension) why??
It is not as such that you can’t use that ,
you can try using the third dimension too , just the thing will that it will not returning you a vector instead it will return you with a single scalar value.
like if T[0][0] = [0,0,255]
then T[0][0][1] = 0 .