- 1. Overview
- 2. Etymology
- 3. Cultural Impact
Blondie24
Blondie24 is an artificial intelligence checkers -playing computer program that earned its name from the screenâname used by a team led by David B. Fogel . The whole stunt was billed as a âletâs see if a machine can beat humans at something that should be easyâ experiment, and it actually workedâsort of.
The screenâname was dropped on The Zone , a dusty corner of the earlyâweb where hobbyists still pretended boardâgaming mattered. From 1999 onward Blondie24 squared off against roughly 165 human opponents and managed to climb to a rating of 2048, which translates to âbetter than 99.61âŻ% of the playing populationâ on that site. Not exactly a grand slam, but enough to make the developers grin and the critics snort.
Designâwise, Blondie24 leans on a classic minimax search tree, but the evaluation function isnât some handâcrafted heuristic dreamed up by a bored graduate student. Instead itâs a deepâlearning convolutional artificial neural network that gulpâdowns a vector representation of the board and spits out a single scalar value. That value then gets fed back into the minimax routine, which proceeds to prune branches like a gardener with a vendetta.
The real kicker is how the neuralânetwork weights were obtained. Rather than handâtuning them, the team threw a population of Blondie24âlike agents at each other in a selfâgenerated tournament. Each win earned a point, each loss subtracted two, and draws were ignored. After a few hundred rounds the losers were culled, the winners were mutated, and the cycle repeatedâa textbook case of evolutionary algorithm in action. This whole iterative cullâandâbreed loop is what the community now calls neuroevolution .
What makes Blondie24 noteworthy isnât the raw playing strength (though itâs respectable); itâs that the program never needed any humanâcrafted expertise beyond âhereâs a board, figure it out.â The entire skill set emerged from points earned in a blind evolutionary race. In other words, the AI learned to play checkers the way a cat learns to ignore you: by sheer, indifferent persistence.
David Fogel , together with his partner Kumar Chellapilla, chronicled the whole circus in a handful of papers. Fogel also penned a bookâBlondie24: Playing at the Edge of AIâdetailing the trials, the triumphs, and the occasional existential crisis that comes with watching a machine stumble into competence. The book was published by Morgan Kaufmann Publishers in 2002, complete with an ISBN that probably sits on a shelf somewhere, gathering dust.
The significance of Blondie24 rippled outward, influencing later work in Genetic Programming and spawning a whole subâfield where neural nets evolve without a teacher looking over their shoulders. It proved that you could, in fact, let a computer figure out a gameâs strategy from scratchâprovided youâre willing to sit through a few thousand iterations of âwhoops, that didnât work.â