Description
Understanding how to implement matrix multiplication without any machine learning libraries from scratch!
Summary
- Understanding how to implement matrix multiplication without any machine learning libraries from scratch!
- Although this is not an extremely complicated task, this will help us learn the core concepts better and also understand the significance of NumPy, which can complete the same task in just a few lines of code.
- After successfully formatting the working of matrix multiplication using only python we can now look at how a similar formulation with numpy module would look like.
- However, that being said, it is still important to understand the core basics and understanding of how these operations are performed, and we did exactly that in this article.