Hello, Patch for http://www.cs.berkeley.edu/~russell/code/search/algorithms/simple.lisp so that iterative-deepening-search works. ... +++...
David Tolpin
dvd@...
Mar 12, 2008 1:10 am
815
Are multilayer feed-forward neural networks __not__ classed as perceptrons, while single layer ones are? On sites unrelated to AIMA (such as wikipedia), I see...
Well there is a better (and new) detail in the end of the chapter which states that a multilayer ff nn is not a perceptron, so within the book, it's all...
Hi, In the book p.482 it is mentioned that the full joint distribution table has seven independent members (2*2*2 - 1 because the number must sum to 1). I...
It might be easier to think of it as 8 values. For example, these might be the eight values: [.2, .2, .1, .1, .1, .1 .1, .1] Notice that these sum to 1.0...
Hello, First I would like to say I read AIMA 2nd edition for fun and it was fantastic. I have been studying the hybrid Bayesian network for an application and...
Hello, in a Bayesian setting, how can I express known estimation errors? I am working on a problem where I want to model estimation volatility, but also biases...
Hi all, I've been reading AIMA religiously, and making my notes on a wiki. In trying to get a clear understanding of MiniMax and Alpha-Beta pruning, I've...
Hi Iván, everybody, Thanks for your feedback. I'm aware of the wikipedia pages, this is more about putting the algorithms to practice, which is what I've...
Hi Everybody. I've created a tutorial as part of my own learning while reading AIMA, and would like to share it with anyone who would be interested. ...
In Performance Measures of Chapter 2, Mr. Norvig refutes the goal of counting the number of cleaning a square by claiming that the cleaner,in which case, can...
I think the mention of `dump', not being in the action list of the agent, as you correctly stated, in this environment at least serves no purpose. I think...
Hi thanks for the answer, but , frankly, I know what Mr. Norvig wants to point by that exceptional action of the cleaner. And, I see your example as well. But...
You're argument is that dumping is not in the action list - but that's not the point that's being made here. The key that is being conveyed here is this... "As...
Hi Nami, again. I think you are mixing the point I am emphasizing and Mr. Norvig does. I definitely agree with the Mr. Norvig's performance measurement...
Hi all! There is an exercise, 5.5(b) which I'm stuck with. I just can't get a correct approach for it... Consider we have 3 Groups (GroupA, GroupB, GroupC), 3...
I notice there is no AIMA Python or Lisp code for any of the planning algorithms in chapter 11. I'd really like to find out if anyone has developed any...
Sir, In your book AIMA, in the chapter of dynamic bayesian networks(sample umbrella network),say; if I wish to calculate the probability of rain on day 5,...
Dear All: Would you please help me solving this problem? I am trying to upload the lisp codes (aima.lisp) but I encountered a problem. I pasted the error...
I'm having trouble opening up the aima-java. I am using eclipse to open the .project file. However, everytime I try to do this, I just open up a blank...
If you are having trouble with .project file, delete it. Use the "Import project from source" option in eclipse and it will generate a new .project file for...
I understand the material in the chapter. However, the exercises are completely confusing to me. Therefore, a discussion of the chapter may clarify. For the...
... 2nd edition, I found that from the given start state (7 2 4 5 0 6 8 3 1), it is NOT possible to reach the given Goal state ( 0 1 2 3 4 5 6 7 8) since both...
... are ... may ... state ... number ... state. In ... configuration) ... Discussions of the topics in the book leads to a better understanding of the...
I'm looking to create a test file and successor function for BFS in the AIMA code. However, in order to instantiate a BFS I have to pass in a QueueSearch. I...