Python Coding From Scratch: Matrix Multiplication Without Any Machine Learning Libraries!

By Medium - 2020-09-26

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.

 

Topics

  1. Machine_Learning (0.42)
  2. NLP (0.19)
  3. Backend (0.16)

Similar Articles

A Journey from Software to Machine Learning Engineer

By KDnuggets - 2020-12-10

In this blog post, the author explains his journey from Software Engineer to Machine Learning Engineer. The focus of the blog post is on the areas that the author wished he'd have focused on during hi ...

Automated Machine Learning in Python

By KDnuggets - 2020-11-14

An organization can also reduce the cost of hiring many experts by applying AutoML in their data pipeline. AutoML also reduces the amount of time it would take to develop and test a machine learning m ...

The Hidden Cost of Machine Learning

By Medium - 2020-12-08

From powering self-driving cars at companies like Tesla to beating up on professionals and some of the world’s most challenging games, machine learning is making its way into software applications…

Applications of Machine Learning in FinTech

By Medium - 2016-04-05

Machine learning is a type of artificial intelligence that provides computers with the ability to learn without being explicitly programmed. The science behind machine learning is interesting and…