The LCE interpreter from lce.testing.Interpreter is a standalone class and exposes different properties of the quantized model (scale and zero-point for example). the converter on the other hand is built upon the two methods convert_keras_model/convert_saved_model.
can you elaborate on your design decision ?
boiling down to follow-up questions:
- how could one use different delegates in the LCE Interpreter (e.g.
use_xnnpack=True as in the cmd line parameters of lce_benchmark_model)
- how to add code and support LCE converter to use options such as
tf.lite.OpsSet.SELECT_TF_OPS (as in regular TFLite)
could you give me a hint on this ?
The LCE interpreter from
lce.testing.Interpreteris a standalone class and exposes different properties of the quantized model (scale and zero-point for example). the converter on the other hand is built upon the two methodsconvert_keras_model/convert_saved_model.can you elaborate on your design decision ?
boiling down to follow-up questions:
use_xnnpack=Trueas in the cmd line parameters oflce_benchmark_model)tf.lite.OpsSet.SELECT_TF_OPS(as in regular TFLite)could you give me a hint on this ?