Dense matrices implementation in Python
Posted on Mon 04 February 2019 in coding • Tagged with Python • 8 min read
Machine learning algorithms often use matrices to store data and compute operations such as multiplications or singular value decomposition. The purpose of this article is to see how matrices are implemented in Python: how the data is stored and how much memory it consumes.
Continue reading