├── .gitignore ├── Makefile ├── README.md ├── feature.cpp ├── include ├── avx.h ├── layers │ ├── bias.h │ ├── conv2d.h │ ├── layer.h │ ├── linear.h │ ├── maxpool2d.h │ ├── relu.h │ └── reshape.h ├── tensor │ └── tensor.h └── threadpool.h └── scripts ├── closest_accuracy.py ├── colors.txt ├── equal.py ├── feature-hist.py ├── feature-mean.py ├── gen_alexnet.py ├── gen_filelists.py ├── pca.py ├── plot.py ├── tsne.py └── visual.html /.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | image/ 3 | include/CImg.h 4 | feature 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/README.md -------------------------------------------------------------------------------- /feature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/feature.cpp -------------------------------------------------------------------------------- /include/avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/include/avx.h -------------------------------------------------------------------------------- /include/layers/bias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/include/layers/bias.h -------------------------------------------------------------------------------- /include/layers/conv2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/include/layers/conv2d.h -------------------------------------------------------------------------------- /include/layers/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/include/layers/layer.h -------------------------------------------------------------------------------- /include/layers/linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/include/layers/linear.h -------------------------------------------------------------------------------- /include/layers/maxpool2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/include/layers/maxpool2d.h -------------------------------------------------------------------------------- /include/layers/relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/include/layers/relu.h -------------------------------------------------------------------------------- /include/layers/reshape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/include/layers/reshape.h -------------------------------------------------------------------------------- /include/tensor/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/include/tensor/tensor.h -------------------------------------------------------------------------------- /include/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/include/threadpool.h -------------------------------------------------------------------------------- /scripts/closest_accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/scripts/closest_accuracy.py -------------------------------------------------------------------------------- /scripts/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/scripts/colors.txt -------------------------------------------------------------------------------- /scripts/equal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/scripts/equal.py -------------------------------------------------------------------------------- /scripts/feature-hist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/scripts/feature-hist.py -------------------------------------------------------------------------------- /scripts/feature-mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/scripts/feature-mean.py -------------------------------------------------------------------------------- /scripts/gen_alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/scripts/gen_alexnet.py -------------------------------------------------------------------------------- /scripts/gen_filelists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/scripts/gen_filelists.py -------------------------------------------------------------------------------- /scripts/pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/scripts/pca.py -------------------------------------------------------------------------------- /scripts/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/scripts/plot.py -------------------------------------------------------------------------------- /scripts/tsne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/scripts/tsne.py -------------------------------------------------------------------------------- /scripts/visual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunziping2016/VeryTinyCnn/HEAD/scripts/visual.html --------------------------------------------------------------------------------