Following the guide in https://www.tensorflow.org/lite/guide/ops_select#using_bazel_xcode I'm building the TensorFlowLiteSelectTfOps_framework, however this builds with all the Tensorflow Ops whereas I just need 2: FlexAudioSpectrogram and FlexMfcc.
How do I build the TensorFlowLiteSelectTfOps_framework with only the extra ops I need?
Note: I'm aware that I can selectively build the TFLite framework for my model, but this seems to trim away all unused operations. I would like to keep all the base TFLite Ops and just add FlexAudioSpectrogram and FlexMfcc.
The reason for this is that I'm experimenting with new model architectures for my iOS and Android apps and would like to keep the TFLite framework broadly compatible so I can deploy new models over the air as long as I only use ops from the base TFLite framework.