Importing TFlite model

Having trouble importing a tflite model that I made. Obviously its very easy to export once created using ‘model.export()’ but how do you then import that model back in if you wanted to test it more. Seen lots of people using an Interpreter however it doesnt seem to work the same way. I just want something like this:

model = image_classifier.import(“model.tflite”)

Any help would be appreciated :slight_smile:

Hi @olly1369

After creating the .tflite file you can use it with the python API. Take a look at this reference.

Regards