├── LICENSE ├── MyWeights └── readme.md ├── README.md ├── annTrain_VGG16_CIFAR10.py ├── models ├── VGG.py ├── __pycache__ │ ├── VGG.cpython-38.pyc │ └── spikeLayer.cpython-38.pyc └── spikeLayer.py ├── requirements.txt └── snnInference_VGG16_CIFAR10.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppppps/ANN2SNNConversion_SNM_NeuronNorm/HEAD/LICENSE -------------------------------------------------------------------------------- /MyWeights/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppppps/ANN2SNNConversion_SNM_NeuronNorm/HEAD/MyWeights/readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppppps/ANN2SNNConversion_SNM_NeuronNorm/HEAD/README.md -------------------------------------------------------------------------------- /annTrain_VGG16_CIFAR10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppppps/ANN2SNNConversion_SNM_NeuronNorm/HEAD/annTrain_VGG16_CIFAR10.py -------------------------------------------------------------------------------- /models/VGG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppppps/ANN2SNNConversion_SNM_NeuronNorm/HEAD/models/VGG.py -------------------------------------------------------------------------------- /models/__pycache__/VGG.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppppps/ANN2SNNConversion_SNM_NeuronNorm/HEAD/models/__pycache__/VGG.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/spikeLayer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppppps/ANN2SNNConversion_SNM_NeuronNorm/HEAD/models/__pycache__/spikeLayer.cpython-38.pyc -------------------------------------------------------------------------------- /models/spikeLayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppppps/ANN2SNNConversion_SNM_NeuronNorm/HEAD/models/spikeLayer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppppps/ANN2SNNConversion_SNM_NeuronNorm/HEAD/requirements.txt -------------------------------------------------------------------------------- /snnInference_VGG16_CIFAR10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppppps/ANN2SNNConversion_SNM_NeuronNorm/HEAD/snnInference_VGG16_CIFAR10.py --------------------------------------------------------------------------------