├── ImageNet ├── __pycache__ │ └── train.cpython-38.pyc ├── evaluate.py └── train.py ├── Models ├── ResNet.py ├── VGG.py ├── __init__.py └── __pycache__ │ ├── ResNet.cpython-38.pyc │ ├── VGG.cpython-38.pyc │ └── __init__.cpython-38.pyc ├── Preprocess ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── augment.cpython-38.pyc │ └── getdataloader.cpython-38.pyc ├── augment.py ├── getdataloader.py └── prefetcher.py ├── README.md ├── __pycache__ ├── DataProcess.cpython-38.pyc ├── ResNet.cpython-38.pyc ├── VGG.cpython-38.pyc ├── funcs.cpython-38.pyc ├── modules.cpython-38.pyc ├── train.cpython-38.pyc └── utils.cpython-38.pyc ├── funcs.py ├── main.py ├── modules.py ├── spikingjelly ├── __init__.py ├── __pycache__ │ └── __init__.cpython-38.pyc ├── cext │ ├── __init__.py │ ├── csrc │ │ └── gemm │ │ │ ├── gemm.cpp │ │ │ └── gemm_kernel.cu │ ├── functional.py │ └── layer.py ├── clock_driven │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── base.cpython-38.pyc │ │ ├── encoding.cpython-38.pyc │ │ ├── neuron.cpython-38.pyc │ │ └── surrogate.cpython-38.pyc │ ├── ann2snn │ │ ├── __init__.py │ │ ├── examples │ │ │ ├── __init__.py │ │ │ ├── cnn_fashionmnist.py │ │ │ ├── cnn_mnist.py │ │ │ ├── model_sample │ │ │ │ ├── __init__.py │ │ │ │ ├── cifar10 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── resnet.py │ │ │ │ │ └── vgg.py │ │ │ │ └── imagenet │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── resnet.py │ │ │ ├── resnet18_cifar10.py │ │ │ └── utils.py │ │ ├── kernels │ │ │ ├── __init__.py │ │ │ ├── onnx.py │ │ │ └── pytorch.py │ │ └── modules.py │ ├── base.py │ ├── cu_kernel_opt.py │ ├── encoding.py │ ├── examples │ │ ├── A2C.py │ │ ├── DQN_state.py │ │ ├── PPO.py │ │ ├── Spiking_A2C.py │ │ ├── Spiking_DQN_state.py │ │ ├── Spiking_PPO.py │ │ ├── __init__.py │ │ ├── cifar10_r11_enabling_spikebased_backpropagation.py │ │ ├── classify_dvsg.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ └── multiprocessing_env.py │ │ ├── conv_fashion_mnist.py │ │ ├── dqn_cart_pole.py │ │ ├── lif_fc_mnist.py │ │ ├── speechcommands.py │ │ ├── spiking_lstm_sequential_mnist.py │ │ └── spiking_lstm_text.py │ ├── functional.py │ ├── layer.py │ ├── model │ │ ├── __init__.py │ │ ├── parametric_lif_net.py │ │ ├── sew_resnet.py │ │ ├── spiking_resnet.py │ │ ├── spiking_vgg.py │ │ └── train_classify.py │ ├── monitor.py │ ├── neuron.py │ ├── neuron_kernel.cu │ ├── neuron_kernel.md │ ├── neuron_kernel.py │ ├── rnn.py │ └── surrogate.py ├── datasets │ ├── __init__.py │ ├── asl_dvs.py │ ├── cifar10_dvs.py │ ├── dvs128_gesture.py │ ├── n_caltech101.py │ ├── n_mnist.py │ └── speechcommands.py ├── event_driven │ ├── __init__.py │ ├── encoding.py │ ├── examples │ │ ├── __init__.py │ │ └── tempotron_mnist.py │ └── neuron.py └── visualizing │ └── __init__.py └── utils.py /ImageNet/__pycache__/train.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/ImageNet/__pycache__/train.cpython-38.pyc -------------------------------------------------------------------------------- /ImageNet/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/ImageNet/evaluate.py -------------------------------------------------------------------------------- /ImageNet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/ImageNet/train.py -------------------------------------------------------------------------------- /Models/ResNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/Models/ResNet.py -------------------------------------------------------------------------------- /Models/VGG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/Models/VGG.py -------------------------------------------------------------------------------- /Models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/Models/__init__.py -------------------------------------------------------------------------------- /Models/__pycache__/ResNet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/Models/__pycache__/ResNet.cpython-38.pyc -------------------------------------------------------------------------------- /Models/__pycache__/VGG.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/Models/__pycache__/VGG.cpython-38.pyc -------------------------------------------------------------------------------- /Models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/Models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Preprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/Preprocess/__init__.py -------------------------------------------------------------------------------- /Preprocess/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/Preprocess/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Preprocess/__pycache__/augment.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/Preprocess/__pycache__/augment.cpython-38.pyc -------------------------------------------------------------------------------- /Preprocess/__pycache__/getdataloader.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/Preprocess/__pycache__/getdataloader.cpython-38.pyc -------------------------------------------------------------------------------- /Preprocess/augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/Preprocess/augment.py -------------------------------------------------------------------------------- /Preprocess/getdataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/Preprocess/getdataloader.py -------------------------------------------------------------------------------- /Preprocess/prefetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/Preprocess/prefetcher.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/DataProcess.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/__pycache__/DataProcess.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/ResNet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/__pycache__/ResNet.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/VGG.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/__pycache__/VGG.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/funcs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/__pycache__/funcs.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/modules.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/__pycache__/modules.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/train.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/__pycache__/train.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/funcs.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/main.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/modules.py -------------------------------------------------------------------------------- /spikingjelly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /spikingjelly/cext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/cext/__init__.py -------------------------------------------------------------------------------- /spikingjelly/cext/csrc/gemm/gemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/cext/csrc/gemm/gemm.cpp -------------------------------------------------------------------------------- /spikingjelly/cext/csrc/gemm/gemm_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/cext/csrc/gemm/gemm_kernel.cu -------------------------------------------------------------------------------- /spikingjelly/cext/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/cext/functional.py -------------------------------------------------------------------------------- /spikingjelly/cext/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/cext/layer.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/clock_driven/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /spikingjelly/clock_driven/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /spikingjelly/clock_driven/__pycache__/encoding.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/__pycache__/encoding.cpython-38.pyc -------------------------------------------------------------------------------- /spikingjelly/clock_driven/__pycache__/neuron.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/__pycache__/neuron.cpython-38.pyc -------------------------------------------------------------------------------- /spikingjelly/clock_driven/__pycache__/surrogate.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/__pycache__/surrogate.cpython-38.pyc -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/ann2snn/__init__.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/examples/cnn_fashionmnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/ann2snn/examples/cnn_fashionmnist.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/examples/cnn_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/ann2snn/examples/cnn_mnist.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/examples/model_sample/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/examples/model_sample/cifar10/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/examples/model_sample/cifar10/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/ann2snn/examples/model_sample/cifar10/resnet.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/examples/model_sample/cifar10/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/ann2snn/examples/model_sample/cifar10/vgg.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/examples/model_sample/imagenet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/examples/model_sample/imagenet/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/ann2snn/examples/model_sample/imagenet/resnet.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/examples/resnet18_cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/ann2snn/examples/resnet18_cifar10.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/examples/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/ann2snn/examples/utils.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/kernels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/kernels/onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/ann2snn/kernels/onnx.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/kernels/pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/ann2snn/kernels/pytorch.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/ann2snn/modules.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/base.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/cu_kernel_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/cu_kernel_opt.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/encoding.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/A2C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/A2C.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/DQN_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/DQN_state.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/PPO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/PPO.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/Spiking_A2C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/Spiking_A2C.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/Spiking_DQN_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/Spiking_DQN_state.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/Spiking_PPO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/Spiking_PPO.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/cifar10_r11_enabling_spikebased_backpropagation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/cifar10_r11_enabling_spikebased_backpropagation.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/classify_dvsg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/classify_dvsg.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/common/multiprocessing_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/common/multiprocessing_env.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/conv_fashion_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/conv_fashion_mnist.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/dqn_cart_pole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/dqn_cart_pole.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/lif_fc_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/lif_fc_mnist.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/speechcommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/speechcommands.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/spiking_lstm_sequential_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/spiking_lstm_sequential_mnist.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/spiking_lstm_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/examples/spiking_lstm_text.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/functional.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/layer.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/clock_driven/model/parametric_lif_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/model/parametric_lif_net.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/model/sew_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/model/sew_resnet.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/model/spiking_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/model/spiking_resnet.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/model/spiking_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/model/spiking_vgg.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/model/train_classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/model/train_classify.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/monitor.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/neuron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/neuron.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/neuron_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/neuron_kernel.cu -------------------------------------------------------------------------------- /spikingjelly/clock_driven/neuron_kernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/neuron_kernel.md -------------------------------------------------------------------------------- /spikingjelly/clock_driven/neuron_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/neuron_kernel.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/rnn.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/surrogate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/clock_driven/surrogate.py -------------------------------------------------------------------------------- /spikingjelly/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/datasets/__init__.py -------------------------------------------------------------------------------- /spikingjelly/datasets/asl_dvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/datasets/asl_dvs.py -------------------------------------------------------------------------------- /spikingjelly/datasets/cifar10_dvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/datasets/cifar10_dvs.py -------------------------------------------------------------------------------- /spikingjelly/datasets/dvs128_gesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/datasets/dvs128_gesture.py -------------------------------------------------------------------------------- /spikingjelly/datasets/n_caltech101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/datasets/n_caltech101.py -------------------------------------------------------------------------------- /spikingjelly/datasets/n_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/datasets/n_mnist.py -------------------------------------------------------------------------------- /spikingjelly/datasets/speechcommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/datasets/speechcommands.py -------------------------------------------------------------------------------- /spikingjelly/event_driven/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/event_driven/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/event_driven/encoding.py -------------------------------------------------------------------------------- /spikingjelly/event_driven/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/event_driven/examples/tempotron_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/event_driven/examples/tempotron_mnist.py -------------------------------------------------------------------------------- /spikingjelly/event_driven/neuron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/event_driven/neuron.py -------------------------------------------------------------------------------- /spikingjelly/visualizing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/spikingjelly/visualizing/__init__.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_conversion_QCFS/HEAD/utils.py --------------------------------------------------------------------------------