How to convert float point .pb model with FakeQuantMinMaxVars nodes to quantized tflite model?

As describled, how to convert this float point model:
image
to quantized model:
image

Hi @ssrao ,

You need to convert your .pb model to saved model format and then convert this saved model to tflite using the TfliteConverter API , you will also need to pass a representative dataset while using the TfliteConverter API

Thank You .