To iterate on what others said, but what was not emphasized enough from my point of few: AI is academic (as a synonym for 'theoretical' and 'math-intensive'). Once you look beyond purely symbolic AI, which proved to be infeasible as @curuinor pointed out somewhere here, you will need to build up at least basic knowledge in probability theory and linear algebra. The path I'm following at the moment is a quite rigorous…
I think to be successful at machine learning you also need a good understanding of calculus, besides probability and linear algebra.
Ask HN: Best books on AI?
41–50 of 95 posts
Re: Ask HN: Best books on AI?
#42Re: Ask HN: Best books on AI?
#43Earlier quoted context omitted.
Unfortunately, there is not a drop of numerics in that book. It's a good book for learning about symbolic AI. There is, to a solid first order approximation, zero symbolic AI in a system like, say, Google speech recognition.
Not surprisingly, I would say, since I wouldn't count speech recognition as an AI task.
Re: Ask HN: Best books on AI?
#44Re: Ask HN: Best books on AI?
#45The canonical text is by Daphne Koller; a course I took used Martin Wainwright's monograph though - the book is briefer and dives into the math quicker.
https://people.eecs.berkeley.edu/~wainwrig/Papers/WaiJor08_F...
Re: Ask HN: Best books on AI?
#46Re: Ask HN: Best books on AI?
#47Some on this thread have recommended Norvig's PAIP, but that's kind of an old school AI book in that it focuses on heuristic search and logic (implementing prolog in lisp at one point, very impressive stuff actually); but is lacking any coverage of statistical machine learning, which is the approach that underlies most of the cool stuff these days. It's still a great book, but I'd instead recommend a path that focuse…
You don't need to focus on just one side or the other. AlphaGo wasn't made by just hacking together a couple neural nets, it built on heuristic search, MCTS, and the "old-school" AI. I agree that basic statistics + Bishop's book is a great way to start getting into machine learning -- but AI is a much broader field than that.
"new-school" AI (machine learning) is just a more pretentious name for statistics/control theory/randomized algorithms.
Re: Ask HN: Best books on AI?
#48Though it is an academic book, Artificial Intelligence: A Modern Approach by Stuart Russell and Peter Norvig. The first chapter in the book provides a detailed analysis of how other disciplines contribute to the idea of AI - from Philosophy to Psychology, Biology to Computer Science. Makes for an interesting read, even for a non-tech reader.
Re: Ask HN: Best books on AI?
#49Re: Ask HN: Best books on AI?
#50But it could be a bit too theoretical - it provides a foundational mathematical framework and got me thinking about problems in a better way.