I was able to reproduce this error by running "python doctests.py" with no arguments. Apparently doctest.master starts out as None and gets initialized when...
On the AIMA pages, http://aima.cs.berkeley.edu , the LISP code pages concerning planning refer to the UCPOP system. However, when one accesses these UCPOP...
One more point. Right now I have found the Java code at the aima site, and am delving into it. I downloaded the Eclipse Java IDE from the Eclipse site, ...
I'm in the process of delving into and running the LISP program code accessible in the site http://aima.cs.berkeley.edu for the 3rd edition of the venerable...
On the problem reported a few days ago running doctests.py in aima-python: It looks like you ran it with no arguments, triggering a bug nobody had noticed...
I'm trying to use the aima-python code to use in the online ai-class course from Standford. I'm new to python but have followed the instructions on the wiki...
I am considering signing up for the free online Stanford AI intro class being taught by Norvig and Russell (the authors), and am trying to nail down the...
Hi AIMA community. We're getting into planning now and while i understand most of the material in chapter 10, i don't understand how planning graphs are used...
Hi, I am confused with the (revised!) description of GRAPH-SEARCH in AIMA 3/e. By adding resulting nodes to the frontier *only* if not already there (or in the...
I was going to assign problem 4.13 to my AI students as a good continuation of 3.7, but I find that it requires problem 4.11. I looked at problem 4.11 and the...
A good way to memorize Bayes rule is this: P(A,B) = P(A|B)P(B) = P(B|A)P(A) ^ probability of "A and B" This is always true. You can easily get Bayes rule...
... This is the definition of Conditional Probability. ... Bayes' Rule is derived from the definition of conditional probability. Hence, all assumptions made...
Need help... Guys can you help me solve the exercises of chapter no 3, 4, 5, & 6 of this book AIMA (Artificial Intelligence: A Modern Approach)... Plz plz plz...
just need some thoughts on "proof by contradiction" introduced on page 250 used on page 254, 7th line from the end `...we wish to prove Alpha; which...
The line indicating the loss from L(spam, nospam) =1, L(nospam, spam) = 10 (pg. 711) makes sense. But the different weightings seem to disappear when L(y, y^)...
The line indicating the loss from L(spam, nospam) =1, L(nospam, spam) = 10 (pg. 711) makes sense. But the different weightings seem to disappear when L(y, y^)...
Hi aima-talk list. i thought i understood how the degree heuristic worked on the Australia 3-color problem but according to pg 216, it guarantees solving the...
[ Apologies if you receive multiple copies of this announcement. ] Hello: Concordia University is organizing C3S2E'11, the Fourth International C* Conference...
just some thoughts on "proof by contradiction" introduced on page 250 used on page 254, 7th line from the end `...we wish to prove which is,say,¬P12` ...
P(H|E) = P(H and E) / P(E) is not as useful as Bayes' Rule P(H|E) = (P(E|H)*P(H))/P(E) But I'm not sure why. Is it because the former requires P(H and E)...
H Andrew, Glad to hear things are up and running for you now :-) Based on the discussions on this thread, a new Wiki help page has been setup on the project's...
Ciaran's comment about setting up a Wiki is an important one. Information such as he sent in his note below should be as available to as many as possible,...
Hi Andrew, To resolve the problem you are seeing I would ensure that your Windows PATH environment variable contains the directory where your JDK's bin is,...
Hi Andrew, It appears your JAVA_HOME is pointing to a Java Runtime Environment (JRE) and not a Java Development Kit (JDK), which is required to compile Java...