Home > database >  How to integrate Tensorflow to an OMNeT project? I can't find documentation
How to integrate Tensorflow to an OMNeT project? I can't find documentation

Time:07-08

I'm trying to simulate my reinforcement learning model on OMNeT . I need to integrate TensorFlow with it, and I can't find a solution to this problem.

CodePudding user response:

OMNeT is practically C library ( a lot of other extra tools). Tensorflow has C API, so your question would rather be: Can I use a 3rd paty C library in OMNeT ?

And the answer is obviously, yes. Compile tensorflow on your machine. Add the tensorflow include folder to the include path and likewise add the tensorflow lib folder to the linker path of your omnet project.

CodePudding user response:

Yes, it would be so great to give more detail. I have been looking for a long time, and the methods are insufficient. Thank you

  • Related