TensorFlow and C api

Hello
I have installed the TensorFlow C Api and I have manage to run the hello world example without any problem.
Then I have started to look the tutorials and I did not find the equivalent in the C api.
For example in this tutorial (TensorFlow 2 quickstart for beginners  |  TensorFlow Core) they use keras but I don’t see how use this library in the C api.

Is there any tutorial or example for the C api?

Hi @Remi_G ,

Sorry for the delayed response. The high level keras functionalities not directly available in the C API as seen in the example tutorial. But you can load either a Tensorflow/Keras saved model and run inference using C API. Here are some useful resources: c_api.h, install TF for C.

Thank You