Google Brain's Co-inventor Tells Why He's Building Chinese Neural Networks
An anonymous reader writes "Here's an interview with Andrew Ng, former leader of Google Brain, discussing Baidu, Deep Learning, computer neural networks, and AI. An interesting excerpt from the interview on biological vs. computer neural networks: "A single 'neuron' in a neural network is an incredibly simple mathematical function that captures a minuscule fraction of the complexity of a biological neuron. So to say neural networks mimic the brain, that is true at the level of loose inspiration, but really artificial neural networks are nothing like what the biological brain does."
Having crossed paths with this fella about 10 years ago, you're not too far off. Minus the racism.
artificial neural networks are nothing like what the biological brain does.
... there are quite a few people around who tried to overclock their brains during the '60s and '70s.
Have gnu, will travel.
To say that "artificial neural networks are nothing like what the biological brain does" is no more correct than to say "artificial neural networks are just like the brain."
Machine learning neural networks do the same flavor of thing that a real organic brain does, but at a complexity that is -many- orders of magnitude smaller. They also tend to be directed at a single skill, and don't have to cohabit the network with, well, everything.
They're not the same, but they're not totally different, either. Truth is not well served by hyperbole.
Don't take life too seriously; it isn't permanent.
Certainly biological neurons are much more complex than artificial neural net neurons. The simplest "Integrate and Fire" (IF) model of a biological neuron perform a leaky integration over *time*, and if the voltage ever reaches the trigger value the fire. So the timing of stimulations is critical, whereas most Artificial Neural Networks (ANNs) does all its calculations (logically) at the same time. The ANN is both simpler and cleaner to work with. Biological synapses are very complex, but much of that complexity just reflects the wet technology that they are made from.
If you want to understand how the brain works, study biological neurons. If you want to understand how to build an intelligent machine, engineer ANNs.