Lstm layer support in cpp api

Hi Everyone,

Do we have support for LSTM layers in tensorflow’s c++ api ?
I can see the conv layers but not the lstm layers.

Thanks

@Yogesh_Gupta Welcome to Tensorflow Forum!

TensorFlow’s C++ API did not have native support for LSTM layers, as it was primarily focused on low-level operations and graph execution. However, the TensorFlow library itself provides support for LSTM layers, but you would typically define and use LSTM layers in Python using the high-level TensorFlow API. Then, you can use the C API to interact with the pre-trained model or integrate it into a C++ application.

ThankYou!