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

How do I connect two tensors? std::vector vals1 = { 1.1, 1.2, 1.3, 1.4, 1.5, 1.6,1.7, 1.8, 1.9 }; std::vector vals2 = { 1.11, 1.21, 1.31, 1.41, 1.51, 1.61,1.71, 1.81,...

inactive

Following the installation instructions, when running 'make' I have this error: `/Users/david/Desktop/cppflow/examples/load_model/main.cpp:3:10: fatal error: 'cppflow/ops.h' file not found #include "cppflow/ops.h"` I might be messing a step?

inactive

Since most scientific computing codes don't use std::vector and use their own containers, new tensor constructor and get_raw_data functions were added to work with pointers of primitive types.

Hi folks, So I wanted to use cppflow for models with multiple outputs that I can differentiate only by their names instead of the tensor names which are all "StatefulPartitionedCall:index"....

contributor-wanted
feature-request

Hi, Can I have some support for reading a .pb model, please? I am trying to use the example code load_model to open a different model .pb, I have the...

awaiting-answer

Hi, I'm writing a DLL that is loaded into certain software which creates drag and drop blocks that than can be used as additional functionality in software. I wrote block...

Hi, If cppflow is used inside a DLL library the application gets stuck without throwing any errors at Restoring SavedModel bundle. I'm trying to load a simple TF model inside...

I'm trying to load a tensorflow graph model using cppflow in c++. I am able to load the model when I define the model loading globally in a standalone applicaiton:...

inactive

When I compare TString usage in cppflow and tensorflow's unittest, it seems that deallocation step may be required. But I did not check actual implementation of TString, so if I...

Thank you for your cppflow lib. I'm integrated this lib in my inference server. but I encountered some problem. my model is like this ``` MetaGraphDef with tag-set: 'serve' contains...

awaiting-answer