Reputation
Badges 1
3 × Eureka!CostlyOstrich36 Typical workflow is the following:
Train object detection CNN Pick the best checkpoint Perform https://www.tensorflow.org/lite/performance/post_training_quantization in tflite, OpenVino or SNPE to obtain quantized model. It requires a set of representative image files.What I'd like to do is to run quantization procedure for various frameworks (listed above) for a given task on its' completion
AgitatedDove14 Thanks for advise, I think it would work for tflite. However, SNPE performs quantization with precompiled CLI binary instead of python library (which also needs to be installed). What would be the pipeline in this case?
AgitatedDove14 , one more question: in case of triggering the quantization process, will it be considered as separate task? I mean, will I be able to clone it and rerun with different parameters (bitness, optimizations, etc) for the same trained network?