I'm working on a TinyML project using Tensorflow Lite with both quantized and float models. In my pipeline, I train my model with the tf.keras API and then convert the model to a TFLite model. Finally, I quantize the TFLite model to int8.
I can save and load the "normal" tensorflow model with the API model.save and tf.keras.model.load_model
Is it possible to do the same with the converted TFLite models? Going through the quantization process every time is quite time-consuming.