I don't see anything related to the robot navigation problem in the Online Code Repository. Anyone have it?...
919
Antti Ylikoski
ylikoskia
Apr 17, 2012 2:53 am
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...
918
tzmtn
Apr 17, 2012 2:53 am
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,...
917
Antti
ylikoskia
Feb 5, 2012 10:09 pm
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...
916
cauchy_wj
Jan 31, 2012 7:31 pm
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...
915
Antti
ylikoskia
Dec 16, 2011 5:37 pm
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...
914
Antti
ylikoskia
Nov 23, 2011 6:05 pm
Is the book: George F. Luger: Artificial Intelligence, Structures and Strategies for Complex Problem Solving, 6th Edition, Addison-Wesley, ISBN...
913
darius_bacon
Nov 15, 2011 5:08 pm
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...
912
Antti
ylikoskia
Nov 15, 2011 5:08 pm
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...
911
Antti Ylikoski
ylikoskia
Nov 15, 2011 5:08 pm
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, ...
910
Antti
ylikoskia
Nov 15, 2011 5:08 pm
The planner SensoryGraphPlan can be found, in an edited, tested and working status, tested with GNU EMACS, SLIME and CLISP, in my web site in ...
909
Antti
ylikoskia
Nov 6, 2011 6:47 pm
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...
908
Darius Bacon
darius_bacon
Oct 28, 2011 8:48 am
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...
907
damo_78@...
damo_78...
Oct 25, 2011 5:10 am
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...
906
rocwoof
Aug 5, 2011 8:21 am
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...
905
baylor
baylorw
Apr 7, 2011 7:13 am
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...
904
sdreisei
Mar 31, 2011 2:41 am
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...
903
jfernando.vega
Mar 9, 2011 6:50 am
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...
902
YKY (Yan King Yin, € ...
cyberneticor...
Mar 9, 2011 6:45 am
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...
901
Bob Futrelle
bobfutrelle
Mar 8, 2011 3:56 am
That's a huge request, and vague at that. - R. Futrelle...
900
j1mmy_n3u7120n
Mar 8, 2011 1:40 am
... This is the definition of Conditional Probability. ... Bayes' Rule is derived from the definition of conditional probability. Hence, all assumptions made...
899
Muhammad Ali
factorde7
Mar 8, 2011 1:40 am
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...
898
fawadsmailbox
Mar 8, 2011 1:40 am
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...
897
Bob Futrelle
bobfutrelle
Mar 8, 2011 1:40 am
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^)...
896
Bob Futrelle
bobfutrelle
Mar 8, 2011 1:40 am
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^)...
895
baylor
baylorw
Mar 8, 2011 1:40 am
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...
894
Serguei A. Mokhov on ...
stgunya
Feb 16, 2011 4:07 pm
[ Apologies if you receive multiple copies of this announcement. ] Hello: Concordia University is organizing C3S2E'11, the Fourth International C* Conference...
893
fawadsmailbox
Feb 13, 2011 5:33 pm
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` ...
892
Jim Davies
jimmyd
Jan 31, 2011 7:46 pm
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)...
891
en9apr@...
en9apr
Jan 16, 2011 10:10 am
Hi, I downloaded the AIMA code from the SVN: http://aima-java.googlecode.com/svn I have followed the instructions on the wiki: ...