cppflow icon indicating copy to clipboard operation
cppflow copied to clipboard

Run TensorFlow models in C++ without installation and without Bazel

Results 83 cppflow issues
Sort by recently updated
recently updated
newest added

Hello, I'm using cppflow recently and has some questions. Here is part of my code, and I don't know how to parse the opencv's Mat image to Tensor. ``` img...

This PR aims to add support for complex number datatypes. Only tested with `std::complex` but I imagine it works just as well with `std::complex`.

requires-testing

Try to ensure only a single context is created per process. For example, in multi-GPU environment, the default context tries to use all the GPU. Limiting GPU usage by remapping...

CMakeLists.txt that compiles to shared object and installs system-wide shared library

Hi, Thank you very much for your convenient wrapper class. I would like to introduce SavedModel class to import the SavedModel v2. I also add a testcase, also serving as...

`tensor::get_data()` call fails. Because internally it calls `deduce_tf_type()`, but here for `bool` type TF_BOOL is never returned because of the preceding `if` block ``` template TF_DataType deduce_tf_type() { // ......

contributor-wanted
feature-request

Hi, I am trying to load my .pb model with the following example code: // Read the graph cppflow::model model("../model/"); But I had some problem during make compilation: Scanning dependencies...

The current project I'm working on needs the ability for me to encrypt frozen .pb files and decrypt back within the app to run for inference . I came across...

Hi! I'm trying to compile some cppflow libraries with c++98. Has anyone attempted this?