Tagged Questions
The peter-norvig tag has no wiki summary.
7
votes
2answers
411 views
Porting a piece of Lisp code to Clojure (PAIP)
I'm reading Paradigms of Artificial Intelligence Programming (PAIP) by Peter Norvig and I'm trying to write all the code in Clojure rather than common Lisp. However I'm stuck on this piece of code on ...
6
votes
5answers
407 views
How can I approximate Python's or operator for set comparison in Scala?
After hearing the latest Stack Overflow podcast, Peter Norvig's compact Python spell-checker intrigued me, so I decided to implement it in Scala if I could express it well in the functional Scala ...
5
votes
3answers
270 views
Which dialect of LISP is 'Paradigms of Artificial Intelligence Programming' written in?
What version/dialect/implementation of LISP is this meant to run on?
(I do understand that the book is written in Common LISP (as specified in the introduction) and that it predates the 1994 CL ...
4
votes
3answers
504 views
Has anyone implemented Peter Norvig's spellchecker in Perl?
I saw Michael Sparks's very interesting dissection of Peter Norvig's Spell Checker at the SO DevDays in London and it got me wondering if anyone has attempted to implement this piece of code in ...
2
votes
1answer
231 views
Question about breadth-first completeness vs depth-first incompleteness
According to Norvig in AIMA (Artificial Intelligence: A modern approach), the Depth-first algorithm is not complete (will not always produce a solution) because there are cases when the subtree being ...