Skip to content

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

License

Notifications You must be signed in to change notification settings

LostBenjamin/fast-xnor-net

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 79.0%
  • C 12.4%
  • Makefile 5.6%
  • CMake 1.7%
  • Objective-C 0.6%
  • Python 0.4%
  • Other 0.3%