I have a problem related to planning. Can anyone take a look and give any suggestion? The chapter 11 and 12 in the AIMA boook talks about the planning, but it...
605
Robert Futrelle
bobfutrelle
Jan 4, 2006 3:23 am
I could presumably slug through getting it to work, but wondering if anyone else has tried openmcl. It seems to be pretty solid, but not behaving too well in...
606
Jim Davies
jimmyd
Jan 5, 2006 6:25 pm
This seems wrong to me, but I just wanted to make sure. Fourth paragraph on page 633 of the second edition it says "It is irrational to play a strongly...
607
The Geek
guihergeek61
Jan 6, 2006 6:06 am
You just misread it - dominated vs. dominant Strongly dominated strategy = a strategy that is strongly dominated by another, a.k.a one that sucks. Therefore it...
608
Ghada
ghkm1984
Jan 12, 2006 1:15 pm
dear all , I need some help I'd like to ask if there is any possible way to get the book Exercises' solutions is there any link or resource , I can make use of...
609
Ravi Mohan
magesmail
Jan 12, 2006 1:36 pm
Hi, I believe Dr Norvig has stated on this list that the manual is available only for Instructors. If you are one, you should be able to make use of the...
610
Robert Futrelle
bobfutrelle
Jan 14, 2006 9:38 pm
There seem to be about three files that were updated today. A number of directories in the updated Lisp code are empty, e.g., search/ and learning/. A...
611
Jim Davies
jimmyd
Jan 28, 2006 7:48 am
I'm teaching decision making now, and the students have this question about information value that I'm having trouble answering. RN2 p602 says that information...
612
Tommy Gun
thompsoncdrum
Jan 29, 2006 9:01 am
A: $10-51 B: $35-98 Could have a significant impact, but probably wouldn't affect your decision because A is more likely to give you the better price. ... What...
613
Robert Futrelle
bobfutrelle
Jan 29, 2006 10:05 pm
This is more a straight Lisp question, but it relates to material in the early chapters of PAIP. (Someone can direct me to a better list for this, I'm sure.) ...
614
Peter Norvig
norvig
Jan 29, 2006 11:46 pm
How about this: (defun split-list (lst) (let ((odds nil) (evens nil)) (loop for x in lst for i from 1 do (if (oddp i) (push x odds) (push x evens))) (list...
615
Steven Shaw
steshaw
Jan 30, 2006 1:56 am
... I can say that it's not tail recursive. I couldn't spot it at first because the simple form to look for is a recursive call embedded in an argument...
616
Steven Shaw
steshaw
Jan 30, 2006 1:56 am
Here's version that's tail recursive though I don't think very efficient because of my use of append and list perhaps were not necessary. (defun split-list2...
617
Steven Shaw
steshaw
Jan 30, 2006 1:59 am
... Looks good. I could have done with nvreverse myself!...
618
Ivan F. Villanueva B.
artificialidea
Feb 3, 2006 10:13 am
Hello, after having read the algorithm Enumeration-Ask (chapter 14) it seems to me that it will only work if the function VARS[BayesNet] returns the variables...
619
The Geek
guihergeek61
Feb 3, 2006 11:11 pm
It's not really about whether or not the information would change your decision, it's that the answer is **unlikely** to change your decision. It's tough to ...
620
mauh_136
Feb 6, 2006 3:51 am
... other field. After all, the better that AI gets, the less likely that people will have to go into harm's way, which is what is preferrable. Just think...
621
ahmed mohamed
ahmedmemo_fci
Feb 15, 2006 5:39 am
I want the slides of the book "Artificial Intelligence A Modern Approach second Edition " important please...
622
Ivan F. Villanueva B.
artificialidea
Feb 15, 2006 12:29 pm
... Did you look in the following address ? http://aima.cs.berkeley.edu/ -- Ivan F. Villanueva B. artificialidea.com <<< European Community...
623
fasisi2003
Feb 15, 2006 12:33 pm
Dear All, Can anyone help me to find examples of knowledge base and path planning? Anyone can give example on solving the vacuum cleaner problem from the AIMA...
624
lamb
lwang81096
Feb 19, 2006 6:38 am
Hello, I just have a little confused on differences among Machine Learning, Artificial Intelligence, and Expert System. Is ML is the subset of AI?? If not,...
625
Ivan F. Villanueva B.
artificialidea
Feb 19, 2006 1:06 pm
... I would say ML and ES are subsets of classic A.I. -- Ivan F. Villanueva B. artificialidea.com <<< European Community Patent will bring...
626
Muhammad Ilyas
sensitive_pr...
Feb 19, 2006 6:44 pm
hi everyone i need source code for the problem given in exercise 14.8 Q.6 in the book Artificial Intelligence By George F Luger &W.A.S the problem statement...
627
Robert Futrelle
bobfutrelle
Feb 19, 2006 6:45 pm
Below is an expurgated version of comments I just wrote to a student. Details that identify the student or topic have been replaced by brackets <....>. I hope...
628
Ivan F. Villanueva B.
artificialidea
Feb 21, 2006 1:31 pm
Hello, just for those of you that don't know why: P(X|e1,e2) = a P(X|e1) P(e2|X,e1) which is used in different explanations in chapter 15, I have expanded the...
629
pranjalawasthi@...
pranjalawasthi
Feb 21, 2006 8:31 pm
why cant u code it yourself? Pranjal Awasthi Indian Institute of Technology, Madras Chennai, India Muhammad Ilyas <sensitive_princeof_2005@...> wrote:...
630
Robert Futrelle
bobfutrelle
Feb 22, 2006 2:45 am
Good question. Why do you want someone else to *give* you the code? If it's for an assignment, you must do it yourself. If not, why do you want it? You should...
631
praveen_lesnar
Feb 26, 2006 4:16 pm
hi everyone, as you people may be knowing there are a great number of prolog code interpreters available as free such as the swi-prolog,quintus prolog,LPA...
632
Robert Futrelle
bobfutrelle
Feb 26, 2006 7:31 pm
I'm no Prolog expert, but I surveyed a number of them and SWI-Prolog seemed the best. Install packages available for many platforms, documentation, etc. Our...
633
teradon2000
Feb 27, 2006 9:49 am
Hi all, I've been trying to get the java code in aima.zip (http://aima.cs.berkeley.edu/code.html#index repository of implementations of the AIMA textbook's...