Loading the wieghts in C++

I am trying to load a trained model, and I need the weights to optimize the function of the NN. I need to do that in C++. Any resources on how that can be done?

Hi @mmetwalli ,

If your model is in TensorFlow format, you can use the TensorFlow C++ API. Resources to Perform the Specific Task .

To load the trained model refer this documentation,

Thank You .