Can anyone recommend good books, articles or essays that introduce machine learning?
11–20 of 25 posts
Re: Can anyone recommend good books, articles or essays that introduce machine learning?
#12Machine Learning by Tom Mitchell for a serious academic book. Programming Collective Intelligence by Toby Segaran for a practical approach in Python.
Re: Can anyone recommend good books, articles or essays that introduce machine learning?
#13Machine Learning by Tom Mitchell for a serious academic book. Programming Collective Intelligence by Toby Segaran for a practical approach in Python.
Re: Can anyone recommend good books, articles or essays that introduce machine learning?
#14Sutton and Barto's book on reinforcement learning is available online at http://www.cs.ualberta.ca/~sutton/book/the-book.html , and is probably the definitive work on the subject.
Re: Can anyone recommend good books, articles or essays that introduce machine learning?
#15Machine Learning by Tom Mitchell for a serious academic book. Programming Collective Intelligence by Toby Segaran for a practical approach in Python.
I disagree wrt Mitchell; too dry and out-of-date. In its place I'd recommend the Norvig book which covers everything Mitchell does (IIRC) except 'Probably Approximately Correct' (PAC) learning. And, it's more up-to-date (Support Vector Machines) and is much more readable. Also, I haven't read it except a flip-through at a bookstore, but Christopher Bishop's one I'd look at (perhaps the Amazon comments).
As far as ML goes, I found the "Programming Collective Intelligence" book to very readable and practical, but very light on the theoretical foundations (which is intentional, of course). I've got a copy of the Witten ML book ("Data Mining: Practical Machine Learning Tools and Techniques"), but to be honest I haven't gotten much from it yet, either: it doesn't seem to discuss SVMs in any detail, nor random forests or neural networks. But I haven't really dug into it yet.
Re: Can anyone recommend good books, articles or essays that introduce machine learning?
#16Machine Learning by Tom Mitchell for a serious academic book. Programming Collective Intelligence by Toby Segaran for a practical approach in Python.
I disagree wrt Mitchell; too dry and out-of-date. In its place I'd recommend the Norvig book which covers everything Mitchell does (IIRC) except 'Probably Approximately Correct' (PAC) learning. And, it's more up-to-date (Support Vector Machines) and is much more readable. Also, I haven't read it except a flip-through at a bookstore, but Christopher Bishop's one I'd look at (perhaps the Amazon comments).
Re: Can anyone recommend good books, articles or essays that introduce machine learning?
#17Information Theory, Inference and Learning Algorithms by David MacKay is excellent, and freely available online. http://www.inference.phy.cam.ac.uk/mackay/itila/book.html
I would also suggest Elements of Statistical Learning: http://www-stat.stanford.edu/~tibs/ElemStatLearn/
As well as Duda, Hart, and Stork's Pattern Classification: http://rii.ricoh.com/~stork/DHS.html
Re: Can anyone recommend good books, articles or essays that introduce machine learning?
#18If you want a fairly easy read without too many equations, try: Data Mining: Practical Machine Learning Tools and Techniques (Second Edition) http://www.cs.waikato.ac.nz/~ml/weka/book.html Which goes nicely with the Weka open source ML toolkit http://www.cs.waikato.ac.nz/ml/weka/ (although it is a good read without the toolkit) If you want a bit more math, I really like the recent (Oct 2007) book: Pattern Recognition…
If you're interested in introductory data mining stuff, I would recommend Tan's Introduction to Data Mining: http://www-users.cs.umn.edu/~kumar/dmbook/index.php
Re: Can anyone recommend good books, articles or essays that introduce machine learning?
#19Earlier quoted context omitted.
I disagree wrt Mitchell; too dry and out-of-date. In its place I'd recommend the Norvig book which covers everything Mitchell does (IIRC) except 'Probably Approximately Correct' (PAC) learning. And, it's more up-to-date (Support Vector Machines) and is much more readable. Also, I haven't read it except a flip-through at a bookstore, but Christopher Bishop's one I'd look at (perhaps the Amazon comments).
I've seen the Norvig book recommended by others on this site for ML, but I don't understand why: the Norvig book is an AI book, not an ML book. It only has a few chapters on learning, and IIRC much of that is on reinforcement learning. Obviously the Norvig book is very well-written and is good background for learning about ML, but I don't think it is a sufficient ML book as such. As far as ML goes, I found the "Progr…