This supports the idea that, increasingly, machine learning is coming back full circle to support neuroscience. Previously, AI researchers looked at the brain for inspiration and now more than ever neuroscientists are being inspired by advances in deep learning, etc.
I don't doubt that there are many similarities between how machine learning works and how brains work, but this seems like a pretty myopic trend of confirmation bias. Neurons and brains are so much more complex than machine learning and it will be really unfortunate if we limit ourselves to the machine learning model in neuroscience.
Yes and no. On the one hand, yes, theoretical neuroscience does use some ideas originating in machine learning and computational statistics. So does computational cognitive science.
On the other hand, in these fields we set ourselves a different explanatory task: point to the real brain, the real body, and real behavior, and explain them in their full complexity. When asked, "how does this explain the real world", machine learning feels no more compunction than an aeronautical engineer asked to explain wings.
This would be great, if only machine learning actually built its engineering artifacts from solid normative principles! Instead, it mostly just hacks things together, as a result of which, its lack of compunction comes across as a reluctance to stand up to the challenge of explaining any aspect of the real world at all, which becomes embarrassing which the machine learning world begins opining on the nature of intelligence and such. Meanwhile, if you ask cognitive scientists and neuroscientists to opine on the nature of intelligence, we have many fewer cool demos, but many more principles and better scientific evidence.
Hacks as a human-driven search driven by competitive forces to find structures that solve human-like tasks. Though it's not guaranteed to produce biological neurology (unless it is somehow a singular solution), it is at least convergent evolution.
maybe the functional nodes (wetware neurons vs software neurons) are very different, but it seems like the way they are manipulated via back-propagation, pooling, recurrence, layerings, etc, are similar, right?
because, at the end of the day, it's more about how behavior is emergent than how behavior functions physically, I would say.
I would guess that if we ever get to some true sci-fi AI "consciousness", it would just be a hyper-scaled version of what we already have. But that's just fun speculation.
Nope. Brains don't use layers or back propagation. CS NN's are really just a cool name for math that has almost nothing in common with how the brain functions.
There is a lot of misinformation about how the brain works.
For example you see a lot of drawings with different parts of the brain doing different things. However, if you look at an actual brain almost none of this is physically obvious. At best those diagrams show what stops working when that part is damaged, though again plenty of people have very different structures and it still mostly works.
This is not correct, artificial NNs are not functionally related to neurons in the brain. Nothing like back-propagation has been observed in real neurons. The early layers of a CNN may be similar to early perceptrons in the brain, but beyond this any connection between the two is fantasy.
Real cells use Hebbian learning, which in some cases is equivalent to back-propagation, but is way less efficient. Otherwise, yes, many of the techniques used in ML is also used in the body. Not only ML, actually, but also electrical engineering and surely many other fields. The more you learn about the body the more machine-like it will look to you. In some respects. In others, it's fucking space technology. Nanobots exist, they are called proteins, and each of your cells have hordes of them, for example.
Well, I think it may not just be Hebbian learning but likely Balanced Amplification learning [1] as well which propagates quite a bit faster. Promising paper came out recently echoing this phenomena globally with a model of visual perception in the macaque brain[2].
Honestly, this is more like having invented solar cells and then saying that that's how trees work. Turning light into energy is just a small part of what trees do, and solar cells are only an approximation of the idea but the actual implementation is very very different from photosynthesis.
this would be the dream, but biological neural networks don't do gradient decent, so have little to do with ANNs until we discover how they really train.
It would be remarkable if biological neural networks don't use gradient descent. They very likely do even if it is a highly approximate gradient. Neurons are optimizing for some objective, and the gradient is usually a very efficient way to do that optimization. It would be remarkable if evolution missed out on such a thing. Even simple Hebbian learning can be viewed as a gradient descent technique.
Gradients can be calculated in remarkably simple ways. Look at Hinton's recirculation networks for example.
I agree. I'm saying we don't know how biological neural networks are trained, which is a pretty important part of any learning construct, so we can't really know how actually similar artificial neural nets are.
What other methods are there for training a neural network? Even blind evolutionary algorithms (assuming each generation is initialized to be somewhat 'near' or 'similar' to its progenitors) are effectively descending a gradient.
To my knowledge they explore solution space but not through a gradient descent but by probing.
How can you perform a GD on non continuous function? Genetic algorithms and evolutionary methods can explore disjoint domains and functions hard from analytical pov.
Just because they can be used for gradient descend doesn't mean they use it.