Does Edge Impulse have a command line converter? I am very envious of the Quantization to INT8 but with Float32 inputs and outputs. How I have previousely been doing quantiziation is a command like this from a tensorflow keras saved_model.pb file with folders assets and vairables using tflite_convert
installed with
pip install tf-nightly tensorflowjs
one big command line
tflite_convert --saved_model_dir=./ --inference_type=tf.int8 --inference_output_type=tf.int8 --mean_value=128 --std_value=127 --output_file=./model_tf_INT8.tflite
xxd -i model_tf_INT8.tflite model_tf_INT8.h
Is there any way to do command line conversions on Edge Impulse (pehaps using edge-impulse-cli) and if not is this something edge impulse could allow from the main webpage.