├── README.md ├── attack ├── __init__.py ├── bim.py ├── cw.py ├── fgsm.py ├── mifgsm.py ├── pgd.py ├── randn.py └── rfgsm.py ├── cifar10-checkpoints └── readme.md ├── config.json ├── data_loaders.py ├── functions.py ├── main_test.py ├── main_train.py ├── models ├── ResNet.py ├── VGG.py ├── __init__.py └── layers.py ├── spikingjelly ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── __init__.cpython-39.pyc ├── cext │ ├── __init__.py │ ├── csrc │ │ └── gemm │ │ │ ├── gemm.cpp │ │ │ └── gemm_kernel.cu │ ├── functional.py │ └── layer.py ├── clock_driven │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── base.cpython-38.pyc │ │ ├── encoding.cpython-38.pyc │ │ ├── neuron.cpython-38.pyc │ │ ├── surrogate.cpython-38.pyc │ │ └── surrogate.cpython-39.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 │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── cifar10_dvs.cpython-39.pyc │ │ ├── dvs128_gesture.cpython-39.pyc │ │ └── n_mnist.cpython-39.pyc │ ├── 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 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/README.md -------------------------------------------------------------------------------- /attack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/attack/__init__.py -------------------------------------------------------------------------------- /attack/bim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/attack/bim.py -------------------------------------------------------------------------------- /attack/cw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/attack/cw.py -------------------------------------------------------------------------------- /attack/fgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/attack/fgsm.py -------------------------------------------------------------------------------- /attack/mifgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/attack/mifgsm.py -------------------------------------------------------------------------------- /attack/pgd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/attack/pgd.py -------------------------------------------------------------------------------- /attack/randn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/attack/randn.py -------------------------------------------------------------------------------- /attack/rfgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/attack/rfgsm.py -------------------------------------------------------------------------------- /cifar10-checkpoints/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/cifar10-checkpoints/readme.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/config.json -------------------------------------------------------------------------------- /data_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/data_loaders.py -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/functions.py -------------------------------------------------------------------------------- /main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/main_test.py -------------------------------------------------------------------------------- /main_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/main_train.py -------------------------------------------------------------------------------- /models/ResNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/models/ResNet.py -------------------------------------------------------------------------------- /models/VGG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/models/VGG.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/models/layers.py -------------------------------------------------------------------------------- /spikingjelly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /spikingjelly/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /spikingjelly/cext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/cext/__init__.py -------------------------------------------------------------------------------- /spikingjelly/cext/csrc/gemm/gemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/cext/csrc/gemm/gemm.cpp -------------------------------------------------------------------------------- /spikingjelly/cext/csrc/gemm/gemm_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/cext/csrc/gemm/gemm_kernel.cu -------------------------------------------------------------------------------- /spikingjelly/cext/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/cext/functional.py -------------------------------------------------------------------------------- /spikingjelly/cext/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/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_attack_RGA/HEAD/spikingjelly/clock_driven/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /spikingjelly/clock_driven/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /spikingjelly/clock_driven/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /spikingjelly/clock_driven/__pycache__/encoding.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/__pycache__/encoding.cpython-38.pyc -------------------------------------------------------------------------------- /spikingjelly/clock_driven/__pycache__/neuron.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/__pycache__/neuron.cpython-38.pyc -------------------------------------------------------------------------------- /spikingjelly/clock_driven/__pycache__/surrogate.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/__pycache__/surrogate.cpython-38.pyc -------------------------------------------------------------------------------- /spikingjelly/clock_driven/__pycache__/surrogate.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/__pycache__/surrogate.cpython-39.pyc -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/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_attack_RGA/HEAD/spikingjelly/clock_driven/ann2snn/examples/cnn_fashionmnist.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/examples/cnn_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/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_attack_RGA/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_attack_RGA/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_attack_RGA/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_attack_RGA/HEAD/spikingjelly/clock_driven/ann2snn/examples/resnet18_cifar10.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/examples/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/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_attack_RGA/HEAD/spikingjelly/clock_driven/ann2snn/kernels/onnx.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/kernels/pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/ann2snn/kernels/pytorch.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/ann2snn/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/ann2snn/modules.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/base.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/cu_kernel_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/cu_kernel_opt.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/encoding.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/A2C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/examples/A2C.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/DQN_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/examples/DQN_state.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/PPO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/examples/PPO.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/Spiking_A2C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/examples/Spiking_A2C.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/Spiking_DQN_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/examples/Spiking_DQN_state.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/Spiking_PPO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/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_attack_RGA/HEAD/spikingjelly/clock_driven/examples/cifar10_r11_enabling_spikebased_backpropagation.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/classify_dvsg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/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_attack_RGA/HEAD/spikingjelly/clock_driven/examples/common/multiprocessing_env.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/conv_fashion_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/examples/conv_fashion_mnist.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/dqn_cart_pole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/examples/dqn_cart_pole.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/lif_fc_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/examples/lif_fc_mnist.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/speechcommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/examples/speechcommands.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/spiking_lstm_sequential_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/examples/spiking_lstm_sequential_mnist.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/examples/spiking_lstm_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/examples/spiking_lstm_text.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/functional.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/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_attack_RGA/HEAD/spikingjelly/clock_driven/model/parametric_lif_net.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/model/sew_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/model/sew_resnet.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/model/spiking_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/model/spiking_resnet.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/model/spiking_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/model/spiking_vgg.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/model/train_classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/model/train_classify.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/monitor.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/neuron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/neuron.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/neuron_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/neuron_kernel.cu -------------------------------------------------------------------------------- /spikingjelly/clock_driven/neuron_kernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/neuron_kernel.md -------------------------------------------------------------------------------- /spikingjelly/clock_driven/neuron_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/neuron_kernel.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/rnn.py -------------------------------------------------------------------------------- /spikingjelly/clock_driven/surrogate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/clock_driven/surrogate.py -------------------------------------------------------------------------------- /spikingjelly/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/datasets/__init__.py -------------------------------------------------------------------------------- /spikingjelly/datasets/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/datasets/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /spikingjelly/datasets/__pycache__/cifar10_dvs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/datasets/__pycache__/cifar10_dvs.cpython-39.pyc -------------------------------------------------------------------------------- /spikingjelly/datasets/__pycache__/dvs128_gesture.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/datasets/__pycache__/dvs128_gesture.cpython-39.pyc -------------------------------------------------------------------------------- /spikingjelly/datasets/__pycache__/n_mnist.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/datasets/__pycache__/n_mnist.cpython-39.pyc -------------------------------------------------------------------------------- /spikingjelly/datasets/asl_dvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/datasets/asl_dvs.py -------------------------------------------------------------------------------- /spikingjelly/datasets/cifar10_dvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/datasets/cifar10_dvs.py -------------------------------------------------------------------------------- /spikingjelly/datasets/dvs128_gesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/datasets/dvs128_gesture.py -------------------------------------------------------------------------------- /spikingjelly/datasets/n_caltech101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/datasets/n_caltech101.py -------------------------------------------------------------------------------- /spikingjelly/datasets/n_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/datasets/n_mnist.py -------------------------------------------------------------------------------- /spikingjelly/datasets/speechcommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/datasets/speechcommands.py -------------------------------------------------------------------------------- /spikingjelly/event_driven/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spikingjelly/event_driven/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/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_attack_RGA/HEAD/spikingjelly/event_driven/examples/tempotron_mnist.py -------------------------------------------------------------------------------- /spikingjelly/event_driven/neuron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/event_driven/neuron.py -------------------------------------------------------------------------------- /spikingjelly/visualizing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/spikingjelly/visualizing/__init__.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putshua/SNN_attack_RGA/HEAD/utils.py --------------------------------------------------------------------------------