We have access to a trained tensor-flow CNN model in .tflite format.
We need to convert it into a Linux executable that (trusted) users can call with say, an image as input, and get an object location as output from the model.
This is because we do not want users to be able to trivially have access to the trained model parameters (for legal reasons) - so the plan is to give only executable privilege to the binary, and no read/write access.
Any suggestions ? Would this be possible in something like PyInstaller ?
Thanks !!