├── .gitignore ├── GNUmakefile ├── LICENSE ├── README.md ├── assets └── weight_evolution.gif ├── data └── normalization │ ├── create_normalized_mnist.m │ └── generate_normalized_mnist.m ├── global.h ├── rm.sh ├── run.sh └── src ├── add_model.cc ├── add_model.h ├── drafting.cc ├── drafting.h ├── evaluation.cc ├── evaluation.h ├── file_read.cc ├── file_read.h ├── file_recorder.h ├── gnuplot.cc ├── gnuplot.h ├── model.cc ├── model.h ├── reader └── mnist │ ├── mnist.cc │ └── mnist.h ├── train.cc └── train.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/.gitignore -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/README.md -------------------------------------------------------------------------------- /assets/weight_evolution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/assets/weight_evolution.gif -------------------------------------------------------------------------------- /data/normalization/create_normalized_mnist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/data/normalization/create_normalized_mnist.m -------------------------------------------------------------------------------- /data/normalization/generate_normalized_mnist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/data/normalization/generate_normalized_mnist.m -------------------------------------------------------------------------------- /global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/global.h -------------------------------------------------------------------------------- /rm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/rm.sh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/run.sh -------------------------------------------------------------------------------- /src/add_model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/add_model.cc -------------------------------------------------------------------------------- /src/add_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/add_model.h -------------------------------------------------------------------------------- /src/drafting.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/drafting.cc -------------------------------------------------------------------------------- /src/drafting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/drafting.h -------------------------------------------------------------------------------- /src/evaluation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/evaluation.cc -------------------------------------------------------------------------------- /src/evaluation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/evaluation.h -------------------------------------------------------------------------------- /src/file_read.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/file_read.cc -------------------------------------------------------------------------------- /src/file_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/file_read.h -------------------------------------------------------------------------------- /src/file_recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/file_recorder.h -------------------------------------------------------------------------------- /src/gnuplot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/gnuplot.cc -------------------------------------------------------------------------------- /src/gnuplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/gnuplot.h -------------------------------------------------------------------------------- /src/model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/model.cc -------------------------------------------------------------------------------- /src/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/model.h -------------------------------------------------------------------------------- /src/reader/mnist/mnist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/reader/mnist/mnist.cc -------------------------------------------------------------------------------- /src/reader/mnist/mnist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/reader/mnist/mnist.h -------------------------------------------------------------------------------- /src/train.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/train.cc -------------------------------------------------------------------------------- /src/train.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haoyz/sym-STDP-SNN/HEAD/src/train.h --------------------------------------------------------------------------------