Views
No views yet
/chat/completions endpoint.1vllm serve meta-llama/Llama-3.1-8B-Instruct \
2 -tp 1 \
3 --speculative-config '{
4 "model": "RedHatAI/Llama-3.1-8B-Instruct-speculator.eagle3",
5 "num_speculative_tokens": 3,
6 "method": "eagle3"
7 }'| Use Case | Dataset | Number of Samples |
|---|---|---|
| Coding | HumanEval | 168 |
| Math Reasoning | gsm8k | 80 |
| Text Summarization | CNN/Daily Mail | 80 |
| Use Case | k=1 | k=2 | k=3 | k=4 | k=5 | k=6 | k=7 |
|---|---|---|---|---|---|---|---|
| Coding | 1.84 | 2.50 | 3.02 | 3.36 | 3.61 | 3.83 | 3.89 |
| Math Reasoning | 1.80 | 2.40 | 2.83 | 3.13 | 3.27 | 3.40 | 3.83 |
| Text Summarization | 1.70 | 2.19 | 2.50 | 2.78 | 2.77 | 2.98 | 2.99 |



1GUIDELLM__PREFERRED_ROUTE="chat_completions" \
2guidellm benchmark \
3 --target "http://localhost:8000/v1" \
4 --data "RedHatAI/speculator_benchmarks" \
5 --data-args '{"data_files": "HumanEval.jsonl"}' \
6 --rate-type sweep \
7 --max-seconds 180 \
8 --output-path "Llama-3.1-8B-Instruct-HumanEval.json" \
9 --backend-args '{"extra_body": {"chat_completions": {"temperature":0.0}}}'1GUIDELLM__PREFERRED_ROUTE="chat_completions" \
2guidellm benchmark \
3 --target "http://localhost:8000/v1" \
4 --data "RedHatAI/speculator_benchmarks" \
5 --data-args '{"data_files": "HumanEval.jsonl"}' \
6 --profile sweep \
7 --max-seconds 1800 \
8 --output-path "my_output.json" \
9 --backend-args '{"extras": {"body": {"temperature":0.6, "top_p":0.95, "top_k":20}}}'