Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
First : get one billion different images of the same thing!
Second : Enjoy your retirement! 😃 -
@volttide those are all nice-to-haves, not really relevant from a pure machine learning viewpoint.
@indraasura it depends on what level you want to learn ML at. Simple models and stuff, you could just look up what each algorithm does intuitively (eg. PCA does dimensionality reduction by finding new data axes and projecting your dataset along those, or linear regression fitting lines to the dataset, SVMs, random forest etc.). Then just use a library like scikit-learn and build you models.
The problem with the above approach is that you'll only get so far, you'll hit a skill ceiling pretty fast. But it is sufficient for basic stuff.
If your goal is to learn it in depth, check out Andrew Ng's Stanford course on ML on YouTube. It's pretty heavy though. Ng's Coursera course is much easier and is a decent introduction (eg. Here you'll learn that PCA is done via a linear algebra operation called the singular value decomposition and how it works). -
swablu2135yTo start learning how to get the machine to learn you must first learn from the machine on how to get the machine to learn.
Does that make sense?
Related Rants
What is the best way to start machine learning? I know Python
question
machine learning
python