We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6a8022 commit 923920cCopy full SHA for 923920c
vllm/sampling_params.py
@@ -386,7 +386,7 @@ def _verify_args(self) -> None:
386
raise ValueError("frequency_penalty must be in [-2, 2], got "
387
f"{self.frequency_penalty}.")
388
if not self.repetition_penalty > 0.0:
389
- raise ValueError("repetition_penalty must be non-negative, got "
+ raise ValueError("repetition_penalty must be greater than zero, got "
390
f"{self.repetition_penalty}.")
391
if self.temperature < 0.0:
392
raise ValueError(
0 commit comments