Spiking neural network

From HandWiki
Short description: Artificial neural network that mimics neurons

File:Real-time-classification-and-sensor-fusion-with-a-spiking-deep-belief-network-Movie1.ogv File:Spiking Neural Network Controlled Virtual Insect Navigate in an Random Terrain.ogv

Main page: Artificial neural network

Spiking neural networks (SNNs) are artificial neural networks (ANN) that more closely mimic natural neural networks.[1] In addition to neuronal and synaptic state, SNNs incorporate the concept of time into their operating model. The idea is that neurons in the SNN do not transmit information at each propagation cycle (as it happens with typical multi-layer perceptron networks), but rather transmit information only when a membrane potential—an intrinsic quality of the neuron related to its membrane electrical charge—reaches a specific value, called the threshold. When the membrane potential reaches the threshold, the neuron fires, and generates a signal that travels to other neurons which, in turn, increase or decrease their potentials in response to this signal. A neuron model that fires at the moment of threshold crossing is also called a spiking neuron model.[2]

Although it was previously believed that the brain encoded information through spike rates, which can be considered as the analogue variable output of a traditional ANN[3], research in the field of neurobiology has indicated that high speed processing cannot solely be performed through a rate based scheme. For example humans can perform an image recognition task at rate requiring no more than 10ms of processing time per neuron through the successive layers (going from the retina to the temporal lobe). This time window is too short for a rate based encoding. The precise spike timings in a small set of spiking neurons also has a higher information coding capacity compared with a rate based approach.[4]

The most prominent spiking neuron model is the leaky integrate-and-fire model.[citation needed] In the integrate-and-fire model, the momentary activation level (modeled as a differential equation) is normally considered to be the neuron's state, with incoming spikes pushing this value higher or lower, until the state eventually either decays or—if the firing threshold is reached—the neuron fires. After firing, the state variable is reset to a lower value.

Various decoding methods exist for interpreting the outgoing spike train as a real-value number, relying on either the frequency of spikes (rate-code), the time-to-first-spike after stimulation, or the interval between spikes.

History

Pulsed neuron model
Artificial synapses based on FTJs

Many multi-layer artificial neural networks are fully connected, receiving input from every neuron in the previous layer and signalling every neuron in the subsequent layer. Although these networks have achieved breakthroughs in many fields, they are biologically inaccurate and do not mimic the operation mechanism of neurons in the brain of a living thing.[5]

The biologically inspired Hodgkin–Huxley model of a spiking neuron was proposed in 1952. This model describes how action potentials are initiated and propagated. Communication between neurons, which requires the exchange of chemical neurotransmitters in the synaptic gap, is described in various models, such as the integrate-and-fire model, FitzHugh–Nagumo model (1961–1962), and Hindmarsh–Rose model (1984). The leaky integrate-and-fire model (or a derivative) is commonly used as it is easier to compute than the Hodgkin–Huxley model.[6]

Underpinnings

Information in the brain is represented as action potentials (neuron spikes), which may be grouped into spike trains or even coordinated waves of brain activity. A fundamental question of neuroscience is to determine whether neurons communicate by a rate or temporal code.[7] Temporal coding suggests that a single spiking neuron can replace hundreds of hidden units on a sigmoidal neural net.[1]

An SNN computes in the continuous rather than the discrete domain. The idea is that neurons may not test for activation in every iteration of propagation (as is the case in a typical multilayer perceptron network), but only when their membrane potentials reach a certain value. When a neuron is activated, it produces a signal that is passed to connected neurons, raising or lowering their membrane potential.

In a spiking neural network, a neuron's current state is defined as its membrane potential (possibly modeled as a differential equation). An input pulse causes the membrane potential to rise for a period of time and then gradually decline. Encoding schemes have been constructed to interpret these pulse sequences as a number, taking into account both pulse frequency and pulse interval. A neural network model based on pulse generation time can be established. Using the exact time of pulse occurrence, a neural network can employ more information and offer better computing properties.

The SNN approach produces a continuous output instead of the binary output of traditional artificial neural networks (ANNs). Pulse trains are not easily interpretable, hence the need for encoding schemes as above. However, a pulse train representation may be more suited for processing spatiotemporal data (or continual real-world sensory data classification).[8] SNNs consider space by connecting neurons only to nearby neurons so that they process input blocks separately (similar to CNN using filters). They consider time by encoding information as pulse trains so as not to lose information in a binary encoding. This avoids the additional complexity of a recurrent neural network (RNN). It turns out that impulse neurons are more powerful computational units than traditional artificial neurons.[9]

SNNs are theoretically more powerful than so called "second-generation networks" defined in[9] as "[ANNs] based on computational units that apply activation function with a continuous set of possible output values to a weighted sum (or polynomial) of the inputs; however, SNN training issues and hardware requirements limit their use. Although unsupervised biologically inspired learning methods are available such as Hebbian learning and STDP, no effective supervised training method is suitable for SNNs that can provide better performance than second-generation networks.[9] Spike-based activation of SNNs is not differentiable thus making it hard to develop gradient descent based training methods to perform error backpropagation, though a few recent algorithms such as NormAD[10] and multilayer NormAD[11] have demonstrated good training performance through suitable approximation of the gradient of spike based activation.

SNNs have much larger computational costs for simulating realistic neural models than traditional ANNs.[citation needed]

Pulse-coupled neural networks (PCNN) are often confused with SNNs. A PCNN can be seen as a kind of SNN.

Currently there are a few challenges when using SNNs that researchers are actively working on. The first challenge concerns the nondifferentiability of the spiking nonlinearity. The expressions for both the forward- and backward-learning methods contain the derivative of the neural activation function which is non-differentiable because neuron's output is either 1 when it spikes, and 0 otherwise. This all-or-nothing behavior of the binary spiking nonlinearity stops gradients from “flowing” and makes LIF neurons unsuitable for gradient-based optimization. The second challenge concerns the implementation of the optimization algorithm itself. Standard BP can be expensive in terms of computation, memory, and communication and may be poorly suited to the constraints dictated by the hardware that implements it (e.g., a computer, brain, or neuromorphic device).[12] Regarding the first challenge there are several approached in order to overcome it. A few of them are:

  1. resorting to entirely biologically inspired local learning rules for the hidden units
  2. translating conventionally trained “rate-based” NNs to SNNs
  3. smoothing the network model to be continuously differentiable
  4. defining an SG (Surogate Gradient) as a continuous relaxation of the real gradients

Applications

SNNs can in principle apply to the same applications as traditional ANNs.[13] In addition, SNNs can model the central nervous system of biological organisms, such as an insect seeking food without prior knowledge of the environment.[14] Due to their relative realism, they can be used to study the operation of biological neural circuits. Starting with a hypothesis about the topology of a biological neuronal circuit and its function, recordings of this circuit can be compared to the output of the corresponding SNN, evaluating the plausibility of the hypothesis. However, there is a lack of effective training mechanisms for SNNs, which can be inhibitory for some applications, including computer vision tasks.

As of 2019 SNNs lag behind ANNs in terms of accuracy, but the gap is decreasing, and has vanished on some tasks.[15]

When using SNNs for image based data we need to convert static images into binary spike trains coding.[16] Types of encodings:[17]

  • Temporal coding generates one spike per neuron in which spike latency is inversely proportional to the pixel intensity.
  • Rate coding converts pixel intensity into a spike train where the number of spikes is proportional to the pixel intensity.
  • Direct coding uses a trainable layer to generate float value for each time-step. We have a learnable layer which converts each pixel at certain time step in float number and then threshold is used on the generated floating numbers to see if they will be 1 or 0.
  • Phase coding encodes temporal information into spike patterns based on a global oscillator.
  • Burst coding transmits the burst of spikes in a small-time duration, increasing the reliability of synaptic communication between neurons.

Software

A diverse range of application software can simulate SNNs. This software can be classified according to its uses:

SNN simulation

Unsupervised learning with ferroelectric synapses

These simulate complex neural models with a high level of detail and accuracy. Large networks usually require lengthy processing. Candidates include:[18]

  • Brian – developed by Romain Brette and Dan Goodman at the École Normale Supérieure;
  • GENESIS (the GEneral NEural SImulation System[19]) – developed in James Bower's laboratory at Caltech;
  • NEST – developed by the NEST Initiative;
  • NEURON – mainly developed by Michael Hines, John W. Moore and Ted Carnevale in Yale University and Duke University;
  • RAVSim (Runtime Tool) [20] – mainly developed by Sanaullah in Bielefeld University of Applied Sciences and Arts;

Hardware

Predicting STDP learning with ferroelectric synapses
Neuron-to-neuron mesh routing model

Future neuromorphic architectures[21] will comprise billions of such nanosynapses, which require a clear understanding of the physical mechanisms responsible for plasticity. Experimental systems based on ferroelectric tunnel junctions have been used to show that STDP can be harnessed from heterogeneous polarization switching. Through combined scanning probe imaging, electrical transport and atomic-scale molecular dynamics, conductance variations can be modelled by nucleation-dominated reversal of domains. Simulations show that arrays of ferroelectric nanosynapses can autonomously learn to recognize patterns in a predictable way, opening the path towards unsupervised learning.[22]

Unsupervised learning with ferroelectric synapses
  • Akida is a completely digital event-based neural processing device with 1.2 million artificial neurons and 10 billion artificial synapses developed by BrainChip. Utilizing event-based possessing, it analyzes essential inputs at specific points. Results are stored in the on-chip memory units.
  • Neurogrid is a board that can simulate spiking neural networks directly in hardware. (Stanford University)
  • SpiNNaker (Spiking Neural Network Architecture) uses ARM processors as the building blocks of a massively parallel computing platform based on a six-layer thalamocortical model. (University of Manchester)[23] The SpiNNaker system is based on numerical models running in real time on custom digital multicore chips using the ARM architecture. It provides custom digital chips, each with eighteen cores and a shared local 128 Mbyte RAM, with a total of over 1,000,000 cores.[24] A single chip can simulate 16,000 neurons with eight million plastic synapses running in real time.[25]
  • TrueNorth is a processor that contains 5.4 billion transistors that consumes only 70 milliwatts; most processors in personal computers contain about 1.4 billion transistors and require 35 watts or more. IBM refers to the design principle behind TrueNorth as neuromorphic computing. Its primary purpose is pattern recognition. While critics say the chip isn't powerful enough, its supporters point out that this is only the first generation, and the capabilities of improved iterations will become clear. (IBM)[26]

Benchmarks

Classification capabilities of spiking networks trained according to unsupervised learning methods[27] have been tested on the common benchmark datasets, such as, Iris, Wisconsin Breast Cancer or Statlog Landsat dataset.[28][29] Various approaches to information encoding and network design have been used. For example, a 2-layer feedforward network for data clustering and classification. Based on the idea proposed in Hopfield (1995) the authors implemented models of local receptive fields combining the properties of radial basis functions (RBF) and spiking neurons to convert input signals (classified data) having a floating-point representation into a spiking representation.[30][31]

See also


References

  1. 1.0 1.1 "Networks of spiking neurons: The third generation of neural network models". Neural Networks 10 (9): 1659–1671. 1997. doi:10.1016/S0893-6080(97)00011-7. ISSN 0893-6080. 
  2. Spiking neuron models : single neurons, populations, plasticity. Cambridge, U.K.: Cambridge University Press. 2002. ISBN 0-511-07817-X. OCLC 57417395. https://www.worldcat.org/oclc/57417395. 
  3. Wang, Xiangwen; Lin, Xianghong; Dang, Xiaochao (2020-05-01). "Supervised learning in spiking neural networks: A review of algorithms and evaluations". Neural Networks 125: 258–280. doi:10.1016/j.neunet.2020.02.011. ISSN 0893-6080. https://www.sciencedirect.com/science/article/pii/S0893608020300563. 
  4. Taherkhani, Aboozar; Belatreche, Ammar; Li, Yuhua; Cosma, Georgina; Maguire, Liam P.; McGinnity, T. M. (2020-02-01). "A review of learning in biologically plausible spiking neural networks". Neural Networks 122: 253–272. doi:10.1016/j.neunet.2019.09.036. ISSN 0893-6080. https://www.sciencedirect.com/science/article/pii/S0893608019303181. 
  5. "Spiking Neural Networks, the Next Generation of Machine Learning". 16 July 2019. https://towardsdatascience.com/spiking-neural-networks-the-next-generation-of-machine-learning-84e167f4eb2b. 
  6. "Flexon: A Flexible Digital Neuron for Efficient Spiking Neural Network Simulations". 2018 ACM/IEEE 45th Annual International Symposium on Computer Architecture (ISCA). June 2018. pp. 275–288. doi:10.1109/isca.2018.00032. ISBN 978-1-5386-5984-7. 
  7. "Spiking Neurons". Pulsed Neural Networks. MIT Press. 2001. ISBN 978-0-262-63221-8. https://books.google.com/books?id=jEug7sJXP2MC&q=%22Pulsed+Neural+Networks%22+rate-code+neuroscience&pg=PA3. 
  8. Van Wezel M (2020). A robust modular spiking neural networks training methodology for time-series datasets: With a focus on gesture control (Master of Science thesis). Delft University of Technology.
  9. 9.0 9.1 9.2 "Networks of spiking neurons: The third generation of neural network models". Neural Networks 10 (9): 1659–1671. 1997. doi:10.1016/S0893-6080(97)00011-7. 
  10. "NormAD - Normalized Approximate Descent based supervised learning rule for spiking neurons". 2015 International Joint Conference on Neural Networks (IJCNN). July 2015. pp. 1–8. doi:10.1109/IJCNN.2015.7280618. ISBN 978-1-4799-1960-4. 
  11. "Training multi-layer spiking neural networks using NormAD based spatio-temporal error backpropagation" (in en). Neurocomputing 380: 67–77. 2020-03-07. doi:10.1016/j.neucom.2019.10.104. ISSN 0925-2312. 
  12. Neftci EO, Mostafa H, Zenke F (2019-05-03). "Surrogate Gradient Learning in Spiking Neural Networks". arXiv:1901.09948 [cs.NE].
  13. "A simple Aplysia-like spiking neural network to generate adaptive behavior in autonomous robots". Adaptive Behavior 14 (5): 306–324. 2008. doi:10.1177/1059712308093869. 
  14. "Spike-based indirect training of a spiking neural network-controlled virtual insect". 52nd IEEE Conference on Decision and Control. Dec 2013. 6798–6805. doi:10.1109/CDC.2013.6760966. ISBN 978-1-4673-5717-3. 
  15. "Deep learning in spiking neural networks". Neural Networks 111: 47–63. March 2019. doi:10.1016/j.neunet.2018.12.002. PMID 30682710. 
  16. "Spiking Neural Networks and Their Applications: A Review". Brain Sciences 12 (7): 863. June 2022. doi:10.3390/brainsci12070863. PMID 35884670. 
  17. Kim Y, Park H, Moitra A, Bhattacharjee A, Venkatesha Y, Panda P (2022-01-31). "Rate Coding or Direct Coding: Which One is Better for Accurate, Robust, and Energy-efficient Spiking Neural Networks?". arXiv:2202.03133 [cs.NE].
  18. "Synaptic plasticity: taming the beast". Nature Neuroscience 3 (S11): 1178–1183. November 2000. doi:10.1038/81453. PMID 11127835. 
  19. "New results on recurrent network training: unifying the algorithms and accelerating convergence". IEEE Transactions on Neural Networks 11 (3): 697–709. May 2000. doi:10.1109/72.846741. PMID 18249797. 
  20. "Evaluation of Spiking Neural Nets-Based Image Classification Using the Runtime Simulator RAVSim". International Journal of Neural Systems 33 (09): 2350044--2350044. August 2023. doi:10.1142/S0129065723500442. PMID 37604777. 
  21. Sutton RS, Barto AG (2002) Reinforcement Learning: An Introduction. Bradford Books, MIT Press, Cambridge, MA.
  22. "Learning through ferroelectric domain dynamics in solid-state synapses". Nature Communications 8: 14736. April 2017. doi:10.1038/ncomms14736. PMID 28368007. Bibcode2017NatCo...814736B. 
  23. "Efficient modelling of spiking neural networks on a scalable chip multiprocessor". 2008 IEEE International Joint Conference on Neural Networks (IEEE World Congress on Computational Intelligence). 2008. pp. 2812–2819. doi:10.1109/IJCNN.2008.4634194. ISBN 978-1-4244-1820-6. 
  24. "Neuromorphic Computing". Human Brain Project. https://www.humanbrainproject.eu/en/silicon-brains/. 
  25. "Hardware: Available Systems". Human Brain Project. https://www.humanbrainproject.eu/en/silicon-brains/how-we-work/hardware/. 
  26. "A new chip functions like a brain, IBM says". The New York Times. 8 August 2014. p. B1. https://www.nytimes.com/2014/08/08/science/new-computer-chip-is-designed-to-work-like-the-brain.html. 
  27. "Supervised learning in spiking neural networks with ReSuMe: sequence learning, classification, and spike shifting". Neural Computation 22 (2): 467–510. February 2010. doi:10.1162/neco.2009.11-08-901. PMID 19842989. 
  28. "UCI repository of machine learning databases.". 1998. http://www.ics.uci.edu/~mlearn/MLRepository.html. 
  29. "Error-backpropagation in temporally encoded networks of spiking neurons.". Neurocomputing 48 (1–4): 17–37. 2002. doi:10.1016/S0925-2312(01)00658-0. https://ir.cwi.nl/pub/4369. 
  30. "Optimal spike-timing-dependent plasticity for precise action potential firing in supervised learning". Neural Computation 18 (6): 1318–1348. June 2006. doi:10.1162/neco.2006.18.6.1318. PMID 16764506. Bibcode2005q.bio.....2037P. 
  31. "Unsupervised clustering with spiking neurons by sparse temporal coding and multilayer RBF networks.". IEEE Transactions on Neural Networks 13 (2): 426–435. March 2002. doi:10.1109/72.991428. PMID 18244443. https://ir.cwi.nl/pub/4370.