9
$\begingroup$

I am aware the Human brain has many functionally distinct components, but let us specifically consider the Human visual cortex: could Artificial Neural Networks (ANNs) be "trained" (through, e.g. backpropagation) in an analogous way to how the visual cortex "learns"?

Is the concept of backpropagation in ANNs a phenomena actually observed in the Human brain?

Related

$\endgroup$
2
  • $\begingroup$ Is this a homework question? Have you done any research about it before asking it here? $\endgroup$ Commented Dec 9, 2016 at 14:27
  • 2
    $\begingroup$ No, its not a homework question, I'm just an amateur in neuroscience and I have this doubt. I thought some here could help me with the answer instead of having to read a book to find out. $\endgroup$ Commented Dec 9, 2016 at 21:48

3 Answers 3

6
+50
$\begingroup$

I recommend Yoshua Bengio's recent works. E.g.: https://arxiv.org/abs/1502.04156 and his slides from the NIPS 2016 Brains and Bits workshop.

Also, Timothy Lillicrap's work: http://www.nature.com/articles/ncomms13276

This is still a big open question. In short, we (the neuroscience community) have little idea on how the brain learns at a circuit/systems level in general. We know a thing or two about how individual synapse changes under specific experimental protocols, but those are phenomenological models (e.g. STDP; there has been many many normative models of learning that concludes their learning rule is STDP-like). (Some systems such as cerebellum, we know relatively more, but the learning seems to be more specific to motor timing.)

The main technique we use in machine learning and artificial neural network are mostly gradient descent (or some sort of stochastic optimization algorithm), and people have been trying to find if the biological neural network learns in a similar way. There are several issues:

  1. There's no error gradient being propagating according to chain rule. Information gets mushed together within a neuron, so there's no plausible way to trace exactly the forward-path during an backpropagation.

  2. There's a lot of recurrent connections but they are not symmetrical.

  3. Temporally, it is implausible that there's a clocked signal to backpropagate after a each forward path. Neuronal network doesn't seem to operate with clocks (some thing there are precise clocks, but I think there's little evidence).

Recent efforts have made some progress with random backprojection, decoupled updates using synthetic gradients, target prop, autoencoder, weight/signal quantization, deep belief networks, etc. But there seems to be several more jumps needed to make it biologically plausible such that it agrees with the neural architecture and information flow. Even then, there's no guarantee that neocortex is learning with a similar principle.

$\endgroup$
1
4
$\begingroup$

Not in the same sense as in artificial neural networks. Importantly, there is no biological mechanism for errors to be back-propagated further than a single cell/synapse.

You can look into spike timing dependent plasticity which uses a back-propagating signal within a single neuron, but this is not a back-propagation of an error so it does not accomplish the same thing.

I found this answer on another site had some useful references for further reading, as well.

$\endgroup$
0
$\begingroup$

I don't know much about backpropagation, but I'd have thought the only way to know if "learning" in an ANN is analogous to learning in the visual cortex would be long term comparisons to a developing neural cortex. Possibly having a microelectrode array in the VC of a test-subject throughout development (30 odd days for a mouse) and I'm not sure if they've done this kind of long term study. This paper looks like it might be interesting in terms of changes to the VC after motor task learning, but doesn't seem to have looked at backpropagation.

So I guess my answer is maybe ANN's can learn analogously to brain structures, but we don't know enough about how the brain learns yet to be able to know if the learning observed in an ANN is comparable to a brain.

$\endgroup$

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .