I created a CNN model on Google Colab's Tensorflow and downloaded the file as a ".py" file. How can I convert this file into a ".coreml" file?
Any advice is much appreciated!
Thank you!
Documentation on how to convert into Core ML's .mlmodel
s: https://developer.apple.com/documentation/coreml/converting_trained_models_to_core_ml
For TensorFlow models, you need to convert it to frozen.pb
model as an input for the convert function. Here are some examples: https://github.com/tf-coreml/tf-coreml/tree/master/examples