I’m facing challenges in performing inference using a model trained in TensorFlow with the Keras API in a C environment.
So far, I’ve trained and saved my model in .h5 format. While researching solutions, I came across TensorFlow Lite, but I realized it’s more applicable to C++.
I’d like to know how I can integrate my trained model into a C environment and perform inference using this model. Is there any specific library I should use for this? Is there a standard way to load the model and trained weights in C and perform inference on input data?
I appreciate any guidance or code examples that can help me understand how to do this.