Tensorflow lite model training on raspberry Pi

Hi all,
I want to to retrain a tflite model using python. I also want to add some more layer to the tflite model. Please let me know if anyone has any prior experience with that (I am not in a position to use Java for this sake).
Thank you in anticipation!

Hi @Suraj_Pandey,

TF Lite is specifically designed for edge devices (memory-constrained devices). TFLite is used for inferencing only, not for training. If you want to change the architecture of the model, you need to go back to the base model, add layers, retrain it, and convert the trained model into tflite. For more information on TFLite please refer to this document

Thank You