Tell me more ×
Computer Science Stack Exchange is a question and answer site for students, researchers and practitioners of computer science. It's 100% free, no registration required.

I have been studying Spiking Neural Networks online from various papers, mainly Maass (1997). I am not entirely sure I understand what makes SNN's pulse-code in contrast to earlier ANNs which are considered rate-code. I have background in neuroscience so I understand the terms and ratio, I'm asking regarding the actual implementation.

Is the practical difference in the fact that when each neuron updates its current state in an SNN it deals with the entire history of every pre-synaptic neuron and not only the last step? Is that what gives it temporal characteristics which previous generation ANN's lack?

share|improve this question

migrated from cstheory.stackexchange.com Aug 15 '12 at 8:59

1 Answer

Yeah; each neuron in the spiking network integrates its input, instead of just summing the input of the previous timestep as in the old analog model.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.