cppflow
cppflow copied to clipboard
Run TensorFlow models in C++ without installation and without Bazel
In a DLL with a single function executing the following test code after being loaded with `LoadLibrary()`: ``` void DLL_EXPORT IdentifierFunction(char** sBuf) { *sBuf = (char*)sPluginID; //Simply returns sPluginID printf("\n\nHello...
Hi, congratulations for the great work! I want to ask if it is planned to enable training models in C++? Cheers!
Many thanks for this extremely helpful library. Currently models are loaded from a file using the `model` constructor which calls `readGraph`. Sometimes it is helpful to load a model from...
Hello, First of all thanks a lot for this simple to use library. Converting a python code into C++ has been a breeze so far. But there are some issues...
Hi, I've been able to build and use CppFlow (only tested the [QuickStart](https://serizba.github.io/cppflow/quickstart.html)), but I'm not sure why there is a `cd` in the steps provided, so I had to...
Hi, sorry for the very naive question, but I am kind of lost. I am defining a tensor using ```auto inp = cppflow::fill({1, input_shape}, 0.0f);```. How to access each element?...
Hi everyone, I am currently trying to get cppflow to work together with tensorflow-gpu-2.10 for Windows. I am currently encountering the error "failed to create cublas handle: CUBLAS_STATUS_NOT_INITIALIZED" during a...
Hi , I saved a trained model and frozen it . The origianl model(unfrozen one) can load with no issue and make inference. But the frozen model throw an error...
Hi All, After getting the output signal from cppflow::encode_wav(), what function of cppflow we will use to write it in the ".wav" format. I want to get a .wav file...