Skip to content

Commit 8698683

Browse files
authored
[llm_bench] Fix help message (#2887)
## Description - Wrong help message is fixed
1 parent 1024fb5 commit 8698683

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/llm_bench/benchmark.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ def get_argprser():
197197
help='The task to setup the pipeline type')
198198
parser.add_argument(
199199
'--strength', type=float, default=None,
200-
help='Applicable for Image to imaage/Inpainting pipelines. Indicates extent to transform the reference `image`. Must be between 0 and 1.')
201-
parser.add_argument("--disable_prompt_permutation", action="store_true", help="Disable modification prompt from run to run for avoid prefix caching")
200+
help='Applicable for Image to image/Inpainting pipelines. Indicates extent to transform the reference `image`. Must be between 0 and 1.')
201+
parser.add_argument("--disable_prompt_permutation", action="store_true", help="Disable modification prompt from run to run to allow prefix caching")
202202
parser.add_argument("--embedding_pooling", choices=["cls", "mean", "last_token"], default=None,
203203
help="Pooling type CLS or MEAN for encoders, LAST_TOKEN for decoders. "
204204
"Different post-processing is applied depending on the padding side. Applicable only for text embeddings")

0 commit comments

Comments
 (0)