Matrix Multiplication - Matrix dot Matrix #574
-
From maths, we know that to multiply a matrix with another matrix the order of the matrix has to be like this: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi, There are two types of multiplication: one is matrix multiplication, as you said. We can use Hope this helps. |
Beta Was this translation helpful? Give feedback.
-
In the torch.matmul(a,b) document: If both tensors are 1-dimensional, the dot product (scalar) is returned. |
Beta Was this translation helpful? Give feedback.
In the torch.matmul(a,b) document: If both tensors are 1-dimensional, the dot product (scalar) is returned.