Comment Re:What I don't like about Dawkins (Score 3, Insightful) 275
The parent poster acknowledges this, they are saying the randomization is *introduced artificially*.
The same as any dice rolling app. All you have to do is seed the pseudorandom number generator the same for each run, and it will roll the same dice, in the same order, every time.
Likewise, if it wants to spit out the next word/phrase and 2 of them have 33% probability, and two have 17%
Then if you seed the random number generator with the same seed for every instance / run, you'll get the same output from the same input on the same model.
The system is entirely determininistic. The same as any other software, from the ghosts in pacman to the bots in quake arena, to a chess engine. We introduce "randomness" to make it more enjoyable, but its pseudorandomness, that we artificially insert. We could just as easily seed the random number generator the same way every time, and then it would do the exact same thing every time. None of these are actually thinking and making decisions.