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

This issue serves as a shared note to track the status of SavedModel C API in TF 2.0, and also for discussions on possible implementations in cppflow2. The original RFC...

This PR implements the experimental SavedModel API in TF v2. As of writing, libtensorflow must be built manually from master (v2.4 development) branch with instructions in #50 if one wants...

Would you please help to run CPPflow to make x86 applications? I found a pre-compiled tensorflow.dll though it causing an error in status check. Here is the link for tensorflow.dll...

awaiting-answer

Data copy is bad for performance. I import span(c++20) for speeding up data access.

As #73 suggested, non-template function definition in header needs to be declared as `inline` to avoid ODR violation. This requires changes in both the auto-generated header and the manually written...

I had tremendous link issues while using this project in a large project. The code being defined in the headers, this creates LNK2005 errors. I also migrated the code to...

This code breaks in Model.cpp at : **TF_SessionRun(this->session, nullptr, io.data(), iv.data(), inputs.size(), oo.data(), ov, outputs.size(), nullptr, 0, nullptr, this->status); this->status_check(true);** The interrupted content is:Microsoft C++ exception: std::runtime_error I don't have...

I'm trying to implement the non-max suppression algorithm on the raw output generated by the YOLOv5 model I trained and loaded into my C++ cppflow model instance. To extract the...

Currently there isn't support for TF_TString tensors. Besides, they require a proper dealloaction with `TF_TString_Dealloc`. This has been mentioned in #196 and #200. A solution was proposed in #128 but...

bug
requires-testing