From f9c3c108e80d24868788d6f4edef7fe475026f8b Mon Sep 17 00:00:00 2001 From: yuwenzho Date: Tue, 23 Jul 2024 13:17:33 +0800 Subject: [PATCH] fix typo Signed-off-by: yuwenzho --- .../text_generation/quantization/weight_only/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/nlp/huggingface_model/text_generation/quantization/weight_only/main.py b/examples/nlp/huggingface_model/text_generation/quantization/weight_only/main.py index 7739f3eee..f65e7111f 100644 --- a/examples/nlp/huggingface_model/text_generation/quantization/weight_only/main.py +++ b/examples/nlp/huggingface_model/text_generation/quantization/weight_only/main.py @@ -94,7 +94,7 @@ parser.add_argument("--trust_remote_code", type=bool, default=False) parser.add_argument("--layer_wise", action="store_true", default=False) parser.add_argument("--quantize_lm_head", action="store_true", default=False, - help="language modelling head will not be quantized by default. Doesn't take effect when 'algorithm' is 'WOQ_TUNE'") + help="language modeling head will not be quantized by default. Doesn't take effect when 'algorithm' is 'WOQ_TUNE'") parser.add_argument("--nodes_to_exclude", nargs="+", default=[], help="nodes that will not be quantized. Doesn't take effect when 'algorithm' is 'WOQ_TUNE'") args = parser.parse_args()