Closed vijay2712 closed 1 year ago
Hi, I recently opened a PR that supports compilation to CoreML (Apple devices): https://github.com/Deci-AI/super-gradients/pull/1007 It is a simple as drag-and-drop to the XCode worksapce. XCode generates inference classes and you can try your model right away.
As of TensorFlow runtimes, they have great documentation about how to convert to TFLite: https://www.tensorflow.org/lite/models/convert/ We recommend converting to TensorFlow (preferbly Keras is possible, converts better) and then to TFLite. You can convert Tensorflow/Keras to TFLite, or ONNX to TFLite, following these docs.
I would recommend:
If you seek performance with TFlite, I recommend checking the GPUDelegates together with MediaPipe by Google. Worth saying TFlite runs also on browsers and is universal, unlike CoreML.
Thanks @avideci I will check
Please share the documentation to test the model on mobile application