Skip to content

Commit

Permalink
CW tokens none by default, not zero
Browse files Browse the repository at this point in the history
  • Loading branch information
ProbablyFaiz committed Jun 21, 2024
1 parent 8098597 commit b6aed06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rl/llm/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class LLMConfig:
model_name_or_path: str
tokenizer_name_or_path: str = ""
lora_name_or_path: str | None = None
context_window_tokens: int = 0
context_window_tokens: int | None = None
max_new_tokens: int = 2048
temperature: float = 0.0
frequency_penalty: float = 0.2 # Experiment with this
Expand Down

0 comments on commit b6aed06

Please sign in to comment.