Live data from Hacker News

Guide to getting started in Machine Learning

abeautifulwww.com

11–16 of 16 posts

Re: Guide to getting started in Machine Learning

#11
God, whatever you do please don't start by picking a few datasets at UCI ML site and using R packages to play with the data.

An ideal approach will be to:

- Pick any programming language and start off with plain regression. It may look simple but this will become fantastic base going forward

- Generate a synthetic data set and apply your freshly written regression on it

- Expand your toolkit to include test and training data set generation and calculation of ROC curves and confusion tables

- Add logistic regression, regularizers and other advanced regression models to the toolkit

- Use a real world dataset and develop multiple different models. And pick the best model (choosing the right model itself is a big task in itself)

- Then try coding Neural Networks, SVM, etc.

Re: Guide to getting started in Machine Learning

#15

God, whatever you do please don't start by picking a few datasets at UCI ML site and using R packages to play with the data. An ideal approach will be to: - Pick any programming language and start off with plain regression. It may look simple but this will become fantastic base going forward - Generate a synthetic data set and apply your freshly written regression on it - Expand your toolkit to include test and train…

Agree with you Paras!

Shubhendu here by the way! :)

I was taken aback a little by the suggestion to use the UCI repository with R for beginning ML.

I would agree with your approach, I learnt all my basics from Andrew Ng's course and his course more or less follows what you said. :)

Re: Guide to getting started in Machine Learning

#16

God, whatever you do please don't start by picking a few datasets at UCI ML site and using R packages to play with the data. An ideal approach will be to: - Pick any programming language and start off with plain regression. It may look simple but this will become fantastic base going forward - Generate a synthetic data set and apply your freshly written regression on it - Expand your toolkit to include test and train…

Agree with you Paras! Shubhendu here by the way! :) I was taken aback a little by the suggestion to use the UCI repository with R for beginning ML. I would agree with your approach, I learnt all my basics from Andrew Ng's course and his course more or less follows what you said. :)

And I prefer the book by Bishop, It strikes a fine balance between the maths and the ideas.
Post reply on HN