Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
afierka-intel committed Oct 30, 2024
1 parent 246aab1 commit 2df2f1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ num_fewshot: 8
dtype: "bfloat16"
fewshot_as_multiturn: true
apply_chat_template: true
num_scheduled_steps: 10
num_scheduler_steps: 10
4 changes: 2 additions & 2 deletions .jenkins/lm-eval-harness/test_lm_eval_correctness.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ def launch_lm_eval(eval_config):
f"max_model_len=4096," \
f"max_num_seqs={max_num_seqs}," \
f"trust_remote_code={trust_remote_code}"
if eval_config.get("num_scheduled_steps"):
if eval_config.get("num_scheduler_steps"):
model_args += \
f",num_scheduled_steps={eval_config.get('num_scheduled_steps')}"
f",num_scheduler_steps={eval_config.get('num_scheduler_steps')}"
print(f"MODEL_ARGS: {model_args}")
kwargs = {}
if 'fewshot_as_multiturn' in eval_config:
Expand Down

0 comments on commit 2df2f1f

Please sign in to comment.