in reply to Re: Artificial Intelligence Programming in Perl
in thread Artificial Intelligence Programming in Perl
How do you think humans make this initial pre-selection? Through "knowing" which kinds of moves are generally "best", resulting in the highest valued position, from other positions. It is from memory of being in that position/arrangement before or a very similar position/arrangement. Or do you believe there is something more mystical occuring in the human mind other than rapid recognition of previous experience and logical reasoning during this process?
Is it this pruning that is the exhibition of intelligence? Or is it the fact the the heuristics are written in neurons instead of code?
I believe you have a misunderstanding regarding the heuristics used in modern chess playing programs. They do not examine all moves for the entire tree. Branches are pruned as early as they become valued such that they are determined not worth following, the system does not continue to evaluate "losing" positions and the subsequent moves.
Deep Blue employs a system called selective extensions to examine chessboard positions. Selective extensions allow the computer to more efficiently search deeply into critical board arrangements. Instead of attempting to conduct an exhaustive "brute force" search into every possible position, Deep Blue selectively chooses distinct paths to follow, eliminating irrelevant searches in the process. ( from this story)
It is a rare individual who can beat the best chess playing computers; one of the top 5 chess players in the world has tried repeatedly and has somewhere in the area of a 50% win rate against Deep Blue.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Artificial Intelligence Programming in Perl
by Abigail-II (Bishop) on Jul 03, 2002 at 12:11 UTC | |
by Sifmole (Chaplain) on Jul 03, 2002 at 12:36 UTC | |
by ariels (Curate) on Jul 03, 2002 at 12:52 UTC | |
by Corion (Patriarch) on Jul 03, 2002 at 13:03 UTC | |
by Sifmole (Chaplain) on Jul 03, 2002 at 13:14 UTC | |
by Abigail-II (Bishop) on Jul 03, 2002 at 14:20 UTC | |
| |
by Abigail-II (Bishop) on Jul 03, 2002 at 13:02 UTC |