mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-08-22 22:02:51 +08:00
fix bug in vllm engine
Former-commit-id: 11bf282dcc0ee257f2c28f46cc1a8edcf62421dc
This commit is contained in:
parent
ef167f839d
commit
967b9c0a49
@ -100,8 +100,9 @@ class VllmEngine(BaseEngine):
|
||||
max_new_tokens = input_kwargs.pop("max_new_tokens", None)
|
||||
stop = input_kwargs.pop("stop", None)
|
||||
|
||||
max_tokens = self.generating_args["max_new_tokens"] or self.generating_args["max_length"]
|
||||
if max_length:
|
||||
max_tokens = max_length - prompt_length
|
||||
max_tokens = max_length - prompt_length if max_length > prompt_length else 1
|
||||
|
||||
if max_new_tokens:
|
||||
max_tokens = max_new_tokens
|
||||
|
Loading…
x
Reference in New Issue
Block a user