Use Post-Training Optimization Tool Command-Line Interface (Model Zoo flow)¶
Introduction¶
POT command-line interface (CLI) is aimed at optimizing models that are similar to the models from OpenVINO Model Zoo or if there is a valid AccuracyChecker Tool configuration file for the model. Examples of AccuracyChecker configuration files can be found on GitHub. Each model folder contains YAML configuration file that can be used with POT as is.
Note
There is also the so-called Simplified mode aimed at optimizatoin of models from the Computer Vision domain and has a simple dataset preprocessing, like image resize and crop. In this case, you can also use POT CLI for optimization. However, the accuracy results are not guaranteed in this case. Moreover, you are also limited in the optimization methods choice since the accuracy measurement is not available.
Run POT CLI¶
There are two ways how to run POT via command line:
Basic usage for DefaultQuantization. In this case you can run POT with basic setting just specifying all the options via command line.
-q default
stands for DefaultQuantization algorithm:pot -q default -m <path_to_xml> -w <path_to_bin> --ac-config <path_to_AC_config_yml>
Basic usage for AccuracyAwareQauntization. You can also run AccuracyAwareQuantization method with basic options.
--max-drop 0.01
option defines maximum accuracy deviation to 1 absolute percent from the original model:pot -q accuracy_aware -m <path_to_xml> -w <path_to_bin> --ac-config <path_to_AC_config_yml> --max-drop 0.01
Advanced usage. In this case you should prepare a configuration file for the POT where you can specify advanced options for the optimization methods available. See POT configuration file description for more details. To launch the command-line tool with the configuration file run:
pot -c <path_to_config_file>
For all available usage options, use the -h
, --help
arguments or refer to the Command-Line Arguments section below.
By default, the results are dumped into the separate output subfolder inside the ./results
folder that is created in the same directory where the tool is run from. Use the -e
option to evaluate the accuracy directly from the tool.
See also the End-to-end example about how to run a particular example of 8-bit quantization with the POT.
Command-Line Arguments¶
The following command-line options are available to run the tool:
Argument |
Description |
---|---|
|
Optional. Show help message and exit. |
|
Quantize model to 8 bits with specified quantization method: |
|
Use |
|
Path to the optimizing model file (.xml). Applicable only when |
|
Path to the weights file of the optimizing model (.bin). Applicable only when |
|
Optional. Model name. Applicable only when |
|
Engine type used to specify CLI mode. Default: |
|
Optional. Valid and required for Simplified mode only. Specifies the path to calibration data. |
|
Path to the Accuracy Checker configuration file. Applicable only when |
|
Optional. Maximum accuracy drop. Valid only for accuracy-aware quantization. Applicable only when |
|
Path to a config file with task- or model-specific parameters. |
|
Optional. Evaluate model on the whole dataset after optimization. |
|
Optional. A directory where results are saved. Default: |
|
Optional. Save the original full-precision model. |
|
Optional. Save results to the “optimized” subfolder within the specified output directory with no additional subpaths added at the end. |
|
Optional. Log level to print. Default: INFO. |
|
Optional. Disable CL logging and enable progress bar. |
|
Optional. Switch model quantization progress display to a multiline mode. Use with third-party components. |
|
Optional. Keep Convolution, Deconvolution and FullyConnected weights uncompressed. Use with third-party components. |