Manual Tuning
If the QAT accuracy does not meet the requirements, you can manually adjust the parameters in the config.json file. This section provides the adjustment principles and parameter description.
Tuning Workflow
If you find that the accuracy of the model quantized based on the initial config.json file generated by the create_quant_retrain_config API call is not as expected, you can tune the PTQ configuration parameters until the accuracy meets your requirement.
- Run quantization based on the initial config.json file generated by the create_quant_retrain_config API call. If the accuracy of the quantized model is satisfactory, stop tuning the configuration parameters. Otherwise, go to 2.
- Cancel quantization at some quantization layers, that is, change the value of retrain_enable to false. Generally, the input and output layers are likely to be quantization-sensitive. Skip quantizing the input and output layers first.
If you have desirable settings for clip_max and clip_min, modify the quantization configuration file as follows.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
{ "version":1, "layername1":{ "retrain_enable":true, "retrain_data_config":{ "algo":"ulq_quantize", "clip_max":3.0, "clip_min":-3.0 }, "retrain_weight_config":{ "algo":"arq_retrain", "channel_wise":true } }, "layername2":{ "retrain_enable":true, "retrain_data_config":{ "algo":"ulq_quantize", "clip_max":3.0, "clip_min":-3.0 }, "retrain_weight_config":{ "algo":"arq_retrain", "channel_wise":true } } }
- Run quantization based on the new configuration. If the accuracy of the quantized model is satisfactory, stop tuning the configuration parameters. Otherwise, it indicates that your model is not suitable for QAT and the QAT configuration should be removed.
Quantization Configuration File
The following is an example of the config.json quantization aware training configuration file generated by calling the create_quant_retrain_config API. (Ensure that the layer name is unique when modifying the JSON file.)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | { "version":1, "conv1":{ "retrain_enable":true, "retrain_data_config":{ "algo":"ulq_quantize" }, "retrain_weight_config":{ "algo":"arq_retrain", "channel_wise":true } }, "conv2_1/expand":{ "retrain_enable":true, "retrain_data_config":{ "algo":"ulq_quantize" }, "retrain_weight_config":{ "algo":"arq_retrain", "channel_wise":true } }, "conv2_1/dwise":{ "retrain_enable":true, "retrain_data_config":{ "algo":"ulq_quantize" }, "retrain_weight_config":{ "algo":"arq_retrain", "channel_wise":true } }, } |
Command-Line Options
The following describes the configuration parameters available in the configuration file. Note that Table 7 to Table 9 are available only when you manually tune the quantization configuration file.
Description |
Version number of the quantization configuration file |
|---|---|
Type |
int |
Value |
1 |
Command-Line Options |
Currently, only version 1 is available. |
Recommended Value |
1 |
Required/Optional |
This function is optional. |
Description |
QAT enable |
|---|---|
Type |
bool |
Value |
true or false |
Parameter Description |
|
Recommended |
true |
Required/Optional |
This function is optional. |
Description |
Activation quantization configuration |
|---|---|
Type |
object |
Value |
- |
Command-line options |
Includes the following parameters:
|
Recommended Value |
- |
Required/Optional |
Optional |
Description |
Weight quantization configuration |
|---|---|
Type |
object |
Value |
- |
Command-line options |
Includes the following parameters:
|
Recommended Value |
- |
Required/Optional |
This function is optional. |
Description |
Quantization algorithm |
|---|---|
Type |
object |
Value |
- |
Command-Line Options |
|
Recommended Value |
Set to ulq_quantize for activation quantization or arq_retrain for weight quantization. |
Required/Optional |
This function is optional. |
Description |
Whether to use different quantization factors for each channel |
|---|---|
Specification |
bool |
Value |
true or false |
Command-Line Options |
|
Recommended |
true |
Required/Optional |
This function is optional. |
Description |
Fixed lower bound switch for the activation quantization algorithm |
|---|---|
Type |
bool |
Value |
true or false |
Command-Line Options |
If this parameter is not included, AMCT automatically sets the lower bound of the activation quantization algorithm according to the graph structure. If this parameter is included, set this parameter for each layer to be quantized as follows: true if the upstream layer is ReLU; false otherwise. |
Recommended Value |
Do not include this parameter. |
Required/Optional |
This function is optional. |
Description |
Upper bound for the activation quantization algorithm |
|---|---|
Type |
float |
Value |
clip_max>0 Controls the upper bound max based on the distribution of the activation values at different layers. The recommended value range is as follows: 0.3*max~1.7*max |
Command-Line Options |
If this parameter is included, the upper bound of the clipping-based activation quantization algorithm is fixed. If this parameter is not included, the upper bound is learned using the IFMR algorithm. |
Recommended Value |
Do not include this parameter. |
Required/Optional |
This function is optional. |
Description |
Lower bound for the activation quantization algorithm |
|---|---|
Specification |
float |
Value |
clip_min<0 Controls the lower bound min based on the distribution of the activation values at different layers. The recommended value range is as follows: 0.3*min~1.7*min |
Command-Line Options |
If this parameter is included, the lower bound of the clipping-based activation quantization algorithm is fixed. If this parameter is not included, the lower bound is learned using the IFMR algorithm. |
Recommended Value |
Do not include this parameter. |
Required/Optional |
Optional |