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...
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)...
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` ...
[ Apologies if you receive multiple copies of this announcement. ] Hello: Concordia University is organizing C3S2E'11, the Fourth International C* Conference...
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...
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^)...
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...
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...
... This is the definition of Conditional Probability. ... Bayes' Rule is derived from the definition of conditional probability. Hence, all assumptions made...
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...
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...
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...
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...
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...
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...
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 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...
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, ...
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...
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...
The AIMA-Python project inspired me to study the Python code in the AIMA site Python files. It seems that I have discovered one bug in those Python files. (I...
Hi, I happen to have a two questions about the Passive ADP Agent (21.2.2 in the 3rd edition). I wonder if somebody could be so kind to answer them: 1. Why the...
I have read through Stuart Russell's lecture slides for the AIMA book, from the AIMA site http://aima.cs.berkeley.edu. They constitute excellent refresher...
Hi, I've tried to implement the back prop learning function from page 734 and ran it on the following examples: double[][] inputs = { {0.547361, -2.04845,...