Matrix Multiplication - utkaln/machine-learning GitHub Wiki
- The usage of dot product and matrix multiplication is significant in all the regression models. It is important to understand how it works
- One important rule is to make sure that the count of column of first matrix must match to that of rows of second matrix
- Numpy has
matmul()
function that provides matrix multiplication