Convert Keras model to quantized Tensorflow Lite model that can be used on Edge TPU
问题 I have a Keras model that I want to run on the Coral Edge TPU device. To do this, it needs to be a Tensorflow Lite model with full integer quantization. I was able to convert the model to a TFLite model: model.save('keras_model.h5') converter = tf.lite.TFLiteConverter.from_keras_model_file("keras_model.h5") tflite_model = converter.convert() open("converted_model.tflite", "wb").write(tflite_model) But when I run edgetpu_compiler converted_model.tflite , I get this error: Edge TPU Compiler