Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
clefourrier committed Dec 9, 2024
1 parent 2bc0b7f commit 317f419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lighteval/models/vllm/vllm_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class VLLMModelConfig:
True # whether to add a space at the start of each continuation in multichoice generation
)
pairwise_tokenization: bool = False # whether to tokenize the context and continuation separately or together.
sampling_params: dict = {} # sampling parameters to use for generation
sampling_params: dict = dict # sampling parameters to use for generation

subfolder: Optional[str] = None
temperature: float = 0.6 # will be used for multi sampling tasks, for tasks requiring no sampling, this will be ignored and set to 0.
Expand Down

0 comments on commit 317f419

Please sign in to comment.