While TensorFlow Lite is amazing, it has certain shortcomings that surface when you’re trying to run a model containing custom operations that aren’t supported by the framework.
Trying to load and run such a model often results in exceptions similar to the following :
As you can see, the model I was trying to load needed 3 operations (Normalize, ExtractFeatures, and Predict) that were missing from TensorFlow Lite’s default dependency.
Continue reading “Compiling a TensorFlow Lite Build with Custom Operations”