- From his talk On Game Software Development, in 2001 I think (from Technetcast.com)
Just to be clear: I'm not questioning the story, just the details in the recollection :)
I'm sure Hillis knows more physics than I do (though I knew the equations of motion pretty well at one time), but he could easily have just mis-spoke. I didn't pursue this line of thought, but considered it might have been something to do with him deriving an expression for the vertical position in a gravitational field, perhaps in terms of horizontal motion or something.
Yes, but they will be our children.
--Marvin Minsky http://web.media.mit.edu/~minsky/papers/sciam.inherit.html
http://www.newyorker.com/magazine/1981/12/14/a-i
"Because of the random wiring, it had a sort of fail-safe characteristic. If one of the neurons wasn’t working, it wouldn’t make much of a difference—and, with nearly three hundred tubes and the thousands of connections we had soldered, there would usually be something wrong somewhere. In those days, even a radio set with twenty tubes tended to fail a lot. I don’t think we ever debugged our machine completely, but that didn’t matter. By having this crazy random design, it was almost sure to work, no matter how you built it."
"So Sussman began working on a program. Not long after, this odd-looking bald guy came over. Sussman figured the guy was going to boot him out, but instead the man sat down, asking, “Hey, what are you doing?” Sussman talked over his program with the man, Marvin Minsky. At one point in the discussion, Sussman told Minsky that he was using a certain randomizing technique in his program because he didn’t want the machine to have any preconceived notions. Minsky said, “Well, it has them, it’s just that you don’t know what they are.” It was the most profound thing Gerry Sussman had ever heard. And Minsky continued, telling him that the world is built a certain way, and the most important thing we can do with the world is avoid randomness, and figure out ways by which things can be planned. Wisdom like this has its effect on seventeen-year-old freshmen, and from then on Sussman was hooked.]"
[1] http://spetharrific.tumblr.com/post/26600309788/sussman-atta...
https://web.archive.org/web/20120717041345/http://sch57.msk....
Do TensorFlow/CNN builders use random initial configurations, or custom designed stuctures?
It's related to the No Free Lunch Theorems. It basically says that if an algorithm performs well on a certain class of learning, searching or optimization problems, then it necessarily pays for that with degraded performance on the set of all remaining problems.
In other words, you always need bias to learn meaningfully. More you have (the right kind of) bias, faster you can learn the subject in hand and slower in all other kinds. In neural networks the bias is not just the weights. There is bias in the selection of random distribution of the network weights (uniform, Gaussian etc.) There is bias in the network topology. There is bias in the learning algorithm, activation function, etc.
Convolutional neural networks are good example. They have very strong bias baked into them and it works really well.
For some tasks, you may wish to initialize using a network that was already trained on a different dataset, if you have reason to believe the new training task is similar to the previous task.
But the weights are often initialized to be really close to zero.
https://web.archive.org/web/20120717041345/http://sch57.msk....
Closing his eyes did not make the room empty. It made him not know which things were where.
Randomizing the neural network did not remove all the preconceptions from the network. It made him not know what the network's preconceptions were.
"What are you doing?", asked Minsky.
"I am training a randomly wired neural net to play Tic-tac-toe", Sussman replied.
"Why is the net wired randomly?", asked Minsky.
"I do not want it to have any preconceptions of how to play", Sussman said.
Minsky then shut his eyes.
"Why do you close your eyes?" Sussman asked his teacher.
"So that the room will be empty."
At that moment, Sussman was enlightened.
RIP.