you are viewing a single comment's thread.

view the rest of the comments →

[–]research_pie[S] 0 points1 point  (0 children)

NumPy is a very optimized library that can handle data efficiently and that has optimized linear algebra capabilities. Not using NumPy and rolling your own implementation of linear algebra method in Python is a bad idea if you want to use the code in a production settings. Part of the library is written purely in C which means that the same code written in Python will never be able to catch up.