Skip to content

Commit 41d9a37

Browse files
Update backup-precision option description (#1055)
* Update backup-precision option description * Trigger Tests * Trigger Tests
1 parent 34bf5ae commit 41d9a37

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/source/openvino/export.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ Optional arguments:
8484
The group size to use for quantization. Recommended value is 128 and -1 uses per-column
8585
quantization.
8686
--backup-precision {none,int8_sym,int8_asym}
87-
Defines a backup precision for mixed-precision weight compression. Only valid for int4 weight
88-
format. If not provided, backup precision is int8_asym. 'none' stands for original floating-
87+
Defines a backup precision for mixed-precision weight compression. Only valid for 4-bit weight
88+
formats. If not provided, backup precision is int8_asym. 'none' stands for original floating-
8989
point precision of the model weights, in this case weights are retained in their original
9090
precision without any quantization. 'int8_sym' stands for 8-bit integer symmetric quantization
9191
without zero point. 'int8_asym' stands for 8-bit integer asymmetric quantization with zero

optimum/commands/export/openvino.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def parse_args_openvino(parser: "ArgumentParser"):
123123
choices=["none", "int8_sym", "int8_asym"],
124124
default=None,
125125
help=(
126-
"Defines a backup precision for mixed-precision weight compression. Only valid for int4 weight format. "
126+
"Defines a backup precision for mixed-precision weight compression. Only valid for 4-bit weight formats. "
127127
"If not provided, backup precision is int8_asym. 'none' stands for original floating-point precision of "
128128
"the model weights, in this case weights are retained in their original precision without any "
129129
"quantization. 'int8_sym' stands for 8-bit integer symmetric quantization without zero point. 'int8_asym' "

0 commit comments

Comments
 (0)