probability
probability copied to clipboard
Can a tensorflow probability model be converted into tflite format for mobile prediction?
I have a TensorFlow probability model which I want to deploy on mobile devices. How can I do that?
TFP just uses raw TF ops under the hood, so as long as you have a Tensor-in, Tensor-out model, I don't see why you couldn't deploy on mobile.
Can you please confirm that if it is possible? When I try to convert it to tflite, I received errors about unknown layer type. Thanks