We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa21527 commit 5f0743dCopy full SHA for 5f0743d
bigcodebench/provider/vllm.py
@@ -41,7 +41,7 @@ def __init__(self, name: str, lora_path: str, dataset: str, tp: int, **kwargs) -
41
local_lora_path,
42
)
43
44
- self.llm = LLM(model=name, max_model_len=self.max_new_tokens, enable_lora=True if self.lora_request else False, **kwargs)
+ self.llm = LLM(model=name, enable_lora=True if self.lora_request else False, **kwargs)
45
self.llm.set_tokenizer(tokenizer=self.tokenizer)
46
47
def is_direct_completion(self) -> bool:
0 commit comments