Hi, the spikingjelly is really good and easy to use. One advice is do you consider integrating some Brain-like properties such as STDP in this library? Maybe it's a good way to add the advantage of spikingjelly.
A PyTorch implementation of Spiking-YOLOv3. Two branches are provided, based on two common PyTorch implementation of YOLOv3(ultralytics/yolov3 & eriklindernoren/PyTorch-YOLOv3), with support for Spiking-YOLOv3-Tiny at present.
Code for the model presented in the paper "A Biologically Plausible Supervised Learning Method for Spiking Neural Networks Using the Symmetric STDP Rule"
Spiking neural networks are biologically plausible CNNs which learn through a temporally dependent learning method known as Spike Time Dependant Plasticity (STDP)- an alternate to gradient descent. This repository contains layers built on top of Lasagne layers for spiking neural networks. This is the first implementation of spiking neural networks in any tensor based framework to the best of my knowledge. The various layers can be found in snn.py for dense layer and snn_conv.py for other layers. These layers are to be processed for each time step which is done using the Theano scan as a quick hack - in the snn class. The results can be found the ppt. Further details on how to use the code will be put up after later.
This repository contains the models and training scripts used in the papers: "Quantizing Spiking Neural Networks with Integers" (ICONS 2020) and "Memory Organization for Energy-Efficient Learning and Inference in Digital Neuromorphic Accelerators" (ISCAS 2020).
Hi, the spikingjelly is really good and easy to use. One advice is do you consider integrating some Brain-like properties such as STDP in this library? Maybe it's a good way to add the advantage of spikingjelly.