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:
cppflow::model model(std::string(model_path));
int main() {
...
}
But, when I build this to create the dll and call that dll from unity (c#), the whole unity application hangs. Is there another way to do so or am I doing something wrong?
I found a work around that stops unity from hanging. Basically instantiating the model with an empty model path:
To make it work, I had to make changes to the model header file(model.h) in cppflow to handle empty model path:
I overwrite the model instance with a proper model path in the update function.
Maybe an expert in cppflow can explain better why this works but for now this solved my problem. While this works smoothly in the build version as well as the editor, but may not be a perfect solution.