Machine Learning from scratch: Bare bones implementations in Python
1–10 of 67 posts
Re: Machine Learning from scratch: Bare bones implementations in Python
#2See for example: https://www.johndcook.com/blog/2010/01/19/dont-invert-that-m...
Re: Machine Learning from scratch: Bare bones implementations in Python
#3Re: Machine Learning from scratch: Bare bones implementations in Python
#4Very cool! I have actually been planning to do exactly what you did, sir :)
Re: Machine Learning from scratch: Bare bones implementations in Python
#5One quick comment: in general it is a bad idea to compute the inverse of a matrix (to solve a linear system). It's much better to compute the QR factorization or SVD instead (or simply call least square solver). See for example: https://www.johndcook.com/blog/2010/01/19/dont-invert-that-m...
Re: Machine Learning from scratch: Bare bones implementations in Python
#6Re: Machine Learning from scratch: Bare bones implementations in Python
#7Nice! I have started brushing up my maths and reading about machine learning in general. Next step is to get my feet wet in the implementation. I think looking at your project can give me a good idea as to how to implement some of the most basic algorithms. Good luck!
Re: Machine Learning from scratch: Bare bones implementations in Python
#8Re: Machine Learning from scratch: Bare bones implementations in Python
#9Cool! How long did it take to learn and implement these models?