I'm currently delving into the AIMA-Python modules. In the module games.py there was there something to correct: in order to be able to run at all 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 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...
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...
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 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'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 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...
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)...
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` ...
Hi, I am using eclipse with the JAVA code downloaded from: http://code.google.com/p/aima-java/downloads/list I created a new project in eclipse, loaded the...
Section 4.1.2 says The probability [also] decreases as the "temperature" T goes down: "bad" moves are more likely to be allowed at the start when T is high,...
I have a set (or pool) of n real numbers. I also have a set of m functions, f_1, f_2, ..., f_m. Each of these functions takes a list of numbers as its...
This search expand the least cost node so the costs of nodes will increase step by step and this means uniform This search expand the least cost node so the...