Skip to content

Latest commit

 

History

History
68 lines (41 loc) · 848 Bytes

README.md

File metadata and controls

68 lines (41 loc) · 848 Bytes

fast-xnor-net

Hopefully fast implementation of XNOR-Net in C, because, why not?

Dataset

http://yann.lecun.com/exdb/mnist/

How to compile

mkdir build
cd build
cmake ..
cd ..
cmake --build build --config Release

How to run

./bin/FNC_XNORNET

Project Structure

├── CMakeLists.txt

├── LICENSE

├── README.md

├── build

│   ├── CMakeCache.txt

│   ├── CMakeFiles

├── include

├── paper

│   └── 1603.05279.pdf

└── src

├── conv_layer.c

├── conv_layer.h

├── fully_con_layer.c

├── fully_con_layer.h

├── main.c

├── main.h

├── mnist_wrapper.c

├── mnist_wrapper.h

├── pool_layer.c

├── pool_layer.h

├── tensor.c

├── tensor.h

├── xnornet.c

└── xnornet.h