FlatBuffer Warning

Tried converting CNN model to TFLite using the TFLite converter Python API. The code used is as below:

converter = tf.lite.TFLiteConverter.from_keras_model(model)

tflite_model = converter.convert()


Got the following warning:

INFO:tensorflow:Assets written to: /tmp/tmprtizkn0v/assets

WARNING:absl:Buffer deduplication procedure will be skipped when flatbuffer library is not properly loaded

Usually we get the warning above when converting tflite and it can be safely ignored. It says that flatbuffer deduplication (removing duplicates) will not work if the flatbuffer version has not been configured properly when building tflite. Thank you!

1 Like