Jiannan Liu

Results 56 comments of Jiannan Liu

Can you try cppflow::model::TYPE::FROZEN_GRAPH? On Tue, Jun 21, 2022, 8:27 PM FrancescaCi ***@***.***> wrote: > thank you so much for the support. > Do you know why I am facing...

I think cppflow::model::FROZEN_GRAPH is the right one here. Can you check if you include model.h and the enum TYPE is there? On Tue, Jun 21, 2022, 9:28 PM FrancescaCi ***@***.***>...

I believe this should be merged, though not tested. Thanks. In addition, we also need to add test cases for the string typed tensor.

If you don't want to fork the project in github, you can try `git format-patch` on your local git repo, and then attach the patch set in this issue. On...

There is a fix for the previous issue in TF master branch (upcoming 2.6). You can build libtensorflow manually and see if it works. Otherwise, you likely need to report...

@serizba There are too many people complaining this. Maybe I will add the missing `inline` declaration to temporarily solve this for now. It seems it is the easiest way to...

I am not sure either.... In my opinion, it is more like a lib design choice. Both have their own pros and cons. The PR #81 chose to keep header...

@khaled-besrour To be honest, I am against moving back to C++ 14 (sorry) because we are considering conditionally importing C++20 features (`std::span`).

Don't worry about the time. Everyone has their own life. Just for reference, this is the official [guide](https://www.tensorflow.org/guide/saved_model) of the SavedModel format. To my understanding, Tensorflow developers seem to use...

@dhiegomaga The only reason why I put the implementation into header was it is short. Apparently, it would be better to separate the implementation into a cpp file if things...