.. | ||
BUILD | ||
CMakeLists.txt | ||
minimal.cc | ||
README.md |
TensorFlow Lite C++ minimal example
This example shows how you can build a simple TensorFlow Lite application.
Step 1. Install CMake tool
It requires CMake 3.16 or higher. On Ubuntu, you can simply run the following command.
sudo apt-get install cmake
Or you can follow the official cmake installation guide
Step 2. Clone TensorFlow repository
git clone https://github.com/tensorflow/tensorflow.git tensorflow_src
Step 3. Create CMake build directory and run CMake tool
mkdir minimal_build
cd minimal_build
cmake ../tensorflow_src/tensorflow/lite/examples/minimal
Step 4. Build TensorFlow Lite
In the minimal_build directory,
cmake --build . -j