How to reduce size of the model?

I am working on ResNet model and want to reduce the size of the model. I am converting the model into tflite But that is not enough for the project requirement. Is there a way to reduce the memory size ?

Hi @shivani_akotkar, Did you apply any type of quantization to the tflite model. If not please try to apply quantization to the model. TFLite currently supports optimization via quantization, this optimization is used to reduce the size of a model. Please refer to this document. Thank You.