Silero-stt model used in tensorflow with python, can I use it in tensorflow .net?

Hello, a beginner’s question, I am using a tfhub.dev model more specifically the TensorFlow Hub the question is, can I load this model using for example tensorflow .net, instead of using it in python. That is, a model made for tensorflow is compatible or should be compatible with tensorflow regardless of the environment where it ends up running?

Hi,

Yes, the tfhub models are regular SavedModels, so they should load anywhere that you can load a savedmodel, no matter which programming language it is.

Thank you very much for your response.