Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions examples/disaggregated/slurm/benchmark/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,12 @@ profiling:
# Accuracy Configuration
accuracy:
enable_accuracy_test: false # Set to true to enable accuracy evaluation
model: "local-completions" # Model type for lm_eval
tasks: "gsm8k" # Evaluation tasks (comma-separated)
model_args_extra: "num_concurrent=512,max_retries=3,tokenized_requests=false,timeout=1200,max_gen_toks=256,max_length=4096" # Extra model arguments for lm_eval
tasks:
gsm8k:
model: "local-completions" # Model type for lm_eval
model_args_extra: "num_concurrent=512,max_retries=3,tokenized_requests=false,timeout=7200,max_gen_toks=16384"
extra_kwargs:
trust_remote_code: true

worker_config:
gen:
Expand Down
9 changes: 6 additions & 3 deletions examples/wide_ep/slurm_scripts/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,12 @@ profiling:
# Accuracy Configuration
accuracy:
enable_accuracy_test: false # Set to true to enable accuracy evaluation
model: "local-completions" # Model type for lm_eval
tasks: "gsm8k" # Evaluation tasks (comma-separated)
model_args_extra: "num_concurrent=512,max_retries=3,tokenized_requests=false,timeout=1200,max_gen_toks=256,max_length=4096" # Extra model arguments for lm_eval
tasks:
gsm8k:
model: "local-completions" # Model type for lm_eval
model_args_extra: "num_concurrent=512,max_retries=3,tokenized_requests=false,timeout=7200,max_gen_toks=16384"
extra_kwargs:
trust_remote_code: true

worker_config:
gen:
Expand Down
Loading