Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pplonski/keras2cpp
This is a bunch of code to port Keras neural network model into pure C++.
https://github.com/pplonski/keras2cpp
keras machine-learning neural-network
Last synced: 3 months ago
JSON representation
This is a bunch of code to port Keras neural network model into pure C++.
- Host: GitHub
- URL: https://github.com/pplonski/keras2cpp
- Owner: pplonski
- License: mit
- Created: 2016-05-02T10:13:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-04-14T21:20:38.000Z (over 4 years ago)
- Last Synced: 2024-07-31T22:45:03.814Z (5 months ago)
- Topics: keras, machine-learning, neural-network
- Language: C++
- Size: 1.01 MB
- Stars: 680
- Watchers: 41
- Forks: 153
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# keras2cpp
This is a bunch of code to port Keras neural network model into pure C++. Neural network weights and architecture are stored in plain text file and input is presented as `vector > >` in case of image. The code is prepared to support simple Convolutional network (from MNIST example) but can be easily extended. There are implemented only ReLU and Softmax activations.
It is working with the Theano backend.
## Usage
1. Save your network weights and architecture.
2. Dump network structure to plain text file with `dump_to_simple_cpp.py` script.
3. Use network with code from `keras_model.h` and `keras_model.cc` files - see example below.## Example
1. Run one iteration of simple CNN on MNIST data with `example/mnist_cnn_one_iteration.py` script. It will produce files with architecture `example/my_nn_arch.json` and weights in HDF5 format `example/my_nn_weights.h5`.
2. Dump network to plain text file `python dump_to_simple_cpp.py -a example/my_nn_arch.json -w example/my_nn_weights.h5 -o example/dumped.nnet`.
3. Compile example `g++ -std=c++11 keras_model.cc example_main.cc` - see code in `example_main.cc`.
4. Run binary `./a.out` - you shoul get the same output as in step one from Keras.## Testing
If you want to test dumping for your network, please use `test_run.sh` script. Please provide there your network architecture and weights. The script do following job:
1. Dump network into text file.
2. Generate random sample.
3. Compute predictions from keras and keras2cpp on generated sample.
4. Compare predictions.## Similar repositories
- Keras to C++ with usage of Tensorflow C API https://github.com/aljabr0/from-keras-to-c