Run TensorFlow models in c++ without Bazel, without TensorFlow installation and without compiling Tensorflow.
// Read the graph
Model model{"graph.pb"};
model.init();
// Prepare inputs and outputs
Tensor input{model, "input"};
Tensor output{model, "output"};
// Run
model.run(input, output);
CppFlow uses Tensorflow C API to run the models, meaning you can use it without installing Tensorflow and without compiling the whole TensorFlow repository with bazel, you just need to download the C API. With this project you can manage and run your models in C++ without worrying about void, malloc or free. With CppFlow you easily can:
- Open .pb models created with Python
- Restore checkpoints
- Save new checkpoints
- Feed new data to your inputs
- Retrieve data from the outputs
Since it uses TensorFlow C API you just have to download it.
You can either install the library system wide by following the tutorial on the Tensorflow page or you can place the contents of the archive
in a folder called libtensorflow
in the home directory.
Afterwards, you can run the examples:
git clone git@github.com:serizba/cppflow.git
cd cppflow/examples/load_model
mkdir build
cd build
cmake ..
make
./example
Suppose we have a saved graph defined by the following TensorFlow Python code (examples/load_model/create_model.py):
# Two simple inputs
a = tf.placeholder(tf.float32, shape=(1, 100), name="input_a")
b = tf.placeholder(tf.float32, shape=(1, 100), name="input_b")
# Output
c = tf.add(a, b, name='result')
You need the graph definition in a .pb file to create a model (examples/load_model/model.pb), then you can init it or restore from checkpoint
Model model("graph.pb");
// Initialize the variables...
model.init();
// ... or restore from checkpoint
model.restore("train.ckpt")
You can create the Tensors by the name of the operations (if you don't know use model.get_operations())
Tensor input_a{model, "input_a"};
Tensor input_b{model, "input_b"};
Tensor output{model, "result"};
Excepected inputs have a shape=(1,100), therefore we have to supply 100 elements:
// Create a vector data = {0,1,2,...,99}
std::vector<float> data(100);
std::iota(data.begin(), data.end(), 0);
// Feed data to the inputs
input_a->set_data(data);
input_b->set_data(data);
// Run!
model.run({input_a, input_b}, output);
// Write the output: 0, 2, 4, 6,.., 198
for (float f : output->get_data<float>()) {
std::cout << f << " ";
}
std::cout << std::endl;