Just like in video it is said that the pixel representation is a tensor because of three axis. Can we also say that in the face detection example it is also a tensor since it has 4 properties(x,y,height of face and width of face)??
Tensor Example Doubt
Hey @VinayakSingh11111, I guess the meaning of tensor you are interpreting is wrong here. Tensors are multi-dimensional arrays with a uniform data type (called a dtype
). If you’re familiar with NumPy, tensors are (kind of) like np.arrays
. And one of the major property of a tensor is that All tensors are immutable like Python numbers and strings: you can never update the contents of a tensor, only create a new one. So yes any multi dimensional array can be called a tensor.
I hope this answers your doubt !
Happy Learning !
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.