Hacker News new | ask | show | jobs
by vector_spaces 1910 days ago
Not specific to computer vision, but my understanding is that the two famous AI texts by Norvig -- Principles of Artificial Intelligence Programming and Artificial Intelligence: A Modern Approach -- are introductions to the "symbolic" approach to AI (as opposed to the "computational intelligence" approaches given by the modern regimes of machine learning, deep learning, and similar), and I would imagine that methods from the symbolic approach are primarily what are used here (but I'm not an expert).

PAIP was recently made available for free download by the author [1]

[1] https://github.com/norvig/paip-lisp/releases/tag/v1.0

2 comments

Machine learning is not a "modern" regime. The term itself was coined in the 1950's, neural networks were first described in 1938 (see Pitts & McCulloch neuron) and the current branch of research started in the 1990's, with statistical machine learnign algorithms that succeeded propositional learners like decision tree classifiers that took off in the 1980's (Ross Quinlan's ID3 algorithm was published in 1986).

AI: A Modern Approach devotes most of its considerable bulk to symbolic AI not because there was no machine learning "back then" (2003, last edition I saw) but because for most of the hisotry of AI most of the work has been on symbolic AI and statistical machine learning was a small sub-field, sometimes not even placed under AI (for example much machine vision work was published under the "pattern recognition" rubric, often not considered part of AI).

One reason for this exclusion is that much of AI research was portrayed as an investigation of the intellectual mechanisms used by the human mind, whereas statistical machine learning was (and is) more focused on narrow applications, like image classification. Although of course the connectionist paradigm has always claimed to be emulating the human brain (or trying to), this has always been more about reproducing the structure of the human brain in a different substrate, rather than elucidating how a mind arises from a brain- which is what classical AI is primarily interested in.

So if you're wondering with the most popular textbook on AI doesn't say much about how to build a hot dog classifier, that's because classical AI does not consider that to be a burning question, on which rests our scientific understanding of the human mind.

Though PAIP is essentially all symbolic "good old-fashioned AI" (and focuses on programming rather than AI theory), AIMA never was -- that's why they emphasized "a modern approach" in the title. I guess it's reasonable though to expect AIMA's coverage of computer vision would be good background for understanding this pastry AI.