Skip to content

Commit

Permalink
docs: update README (#2516)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhyncs authored Dec 19, 2024
1 parent bb4a922 commit 64456cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions python/sglang/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@
- `check_env.py`: Check the environment variables.
- `global_config.py`: The global configs and constants.
- `launch_server.py`: The entry point for launching the local server.
- `llama3_eval.py`: Llama 3.1 evaluation with meta-llama dataset.
- `utils.py`: Common utilities.
4 changes: 2 additions & 2 deletions python/sglang/llama3_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ async def fetch_responses(

TASK_TO_EVAL_SET = {
"mmlu": "evals__mmlu__details",
"mmlu_0_shot": "evals__mmlu__0_shot__cot__details",
"mmlu_cot": "evals__mmlu__0_shot__cot__details",
"mmlu_pro": "evals__mmlu_pro__details",
"gsm8k": "evals__gsm8k__details",
}
Expand Down Expand Up @@ -297,7 +297,7 @@ class Stats:
"--task",
type=str,
required=True,
help="Task (e.g., mmlu, mmlu_0_shot, mmlu_pro, gsm8k)",
help="Task (e.g., mmlu, mmlu_cot, mmlu_pro, gsm8k)",
)
parser.add_argument(
"--num-examples", type=int, default=None, help="Number of examples to process"
Expand Down

0 comments on commit 64456cf

Please sign in to comment.