Open codebugged opened 4 years ago
You can convert your model with: `import tensorflow as tf
converter = tf.lite.TFLiteConverter.from_saved_model(saved_model_dir) # path to the SavedModel directory tflite_model = converter.convert()
with open('model.tflite', 'wb') as f: f.write(tflite_model)`
Dear Sir @OlafenwaMoses
Thank you so much for this awesome library.
I have trained the model for custom object detection and now wish to use in an android app. How can I convert it into tfLite Model and embed it into an Android APP?
Thanks in advance