It seems like there are so many subfields linked to Machine Learning. Is there a book or a blog that gives an overview of those different fields and what each of them do, maybe how to get started, and what background knowledge is required?

link|improve this question

70% accept rate
5  
+1 good question. I would be interested in this as well – Erik Ahlswede Feb 28 '09 at 21:38
probably should be wiki – Malfist Feb 28 '09 at 21:53
feedback

11 Answers

up vote 32 down vote accepted

If you're looking for a quick overview of the field, I recommend Christopher Bishop's 2010 Turing Lecture: Embracing Uncertainty: The new machine intelligence

The best formal overview I've seen so far is Stanford professor Andrew Ng's older online lectures or his online class. They're at the college level, but approachable.

Peter Norvig's Theorizing from Data talk at Facebook is a quick overview of what's possible, but not nearly as in-depth as the Ng lectures.

Jeremy Howard's "Getting In Shape For The Sport of Data Science" is the best pragmatic overview of actually working with data. It's much more hands-on than the other videos.

I also wrote a blog post "Computing Your Skill" after spending months trying to understand TrueSkill, the ML system that does matchmaking and ranking on Xbox Live. The post goes into the foundational statistics needed for further study in machine learning.

link|improve this answer
I wrongfully downvoted your answer, which I can't withdraw, sorry for that. – Comptrol Jan 4 at 12:50
feedback

videolectures.net has a large collection of Machine Learning videos . One very good technical introductory lecture on the site is Machine Learning, Probability and Graphical Models by Sam Roweis.

A good overview of the field is Tom Mitchell's seminar The Discipline and Future of Machine Learning. Here is a direct link to the video [mov].

The Machine Learning lecture notes on MIT OpenCourseWare are also very good. And the Syllabus page has a good list of recommended texts:

link|improve this answer
+1 for The Elements of Statistical Learning. That book is a great resource. Just looking at the pictures gives you an overview of how these techniques work, and then you can dive into the math when you feel up to it. – Zach May 2 '11 at 18:37
feedback

Ethem Alpaydin's Introduction to Machine Learning is a pretty accessible overview of the field.

If you're feeling overwhelmed by the other options you might want to start with it first.

link|improve this answer
This one is really a good book, I'd definitely suggest that. – kolistivra Mar 31 '11 at 19:06
feedback

Two of the best textbooks out there are:

Another good resource is MIT's Open CourseWare site for their Machine Learning class.

link|improve this answer
feedback

Artificial Intelligence: A Modern Approach is the most common text book for introductory AI courses.

Witten and Frank's book on Data Mining is a little easier to digest if that topic is what appeals to you.

link|improve this answer
feedback

i'd recommand you take a look at ml-class.org.

link|improve this answer
feedback

You are right to feel that there are lots of sub-fields to ML.

Machine Learning in general is basically just the idea of Algorithms which improve over time. If you're simply curious, some random topics that come to mind include:

Classification, Association analysis, Clustering, Decision Trees, Genetic Algorithms, Concept Learning

As far as books go:

I'm currently using Introduction to Data Mining for a course right now. It covers quite a few of the topics I've listed above and usually has examples of algorithms/uses in each section.

You don't need too much background knowledge to understand a lot of the topics. Most algorithms have some math underlying them which is used to improve the results, and you obviously need to be comfortable with general programming/data structures.

link|improve this answer
feedback

The Machine Learning subreddit has interesting links for all levels.

link|improve this answer
feedback

I've been using 'Machine Learning: An algorithmic Perspective' by Stephen Marsland. And I think the approach is awesome. The author has put up the python code on his site. So you can actually download the code and look at it just to take a peek at how things work.

http://www-ist.massey.ac.nz/smarsland/MLbook.html

link|improve this answer
feedback

Try A First Encounter with Machine Learning, it's a freely available course for undergraduate level.

link|improve this answer
feedback

I found "Programming Collective Intelligence" to be the book that really helped me (with practical examples) and an "Algorithm Beastiary" at the end.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.