Views
No views yet
train_sft split of HuggingFaceH4/ultrachat_200k).
This model should be used with the openai/gpt-oss-20b chat template, specifically through the /chat/completions endpoint.1vllm serve openai/gpt-oss-20b \
2 -tp 1 \
3 --speculative-config '{
4 "model": "RedHatAI/gpt-oss-20b-speculator.eagle3",
5 "num_speculative_tokens": 3,
6 "method": "eagle3"
7 }'| Use Case | Dataset | Number of Samples |
|---|---|---|
| Coding | HumanEval | 168 |
| Math Reasoning | math_reasoning | 80 |
| QA | qa | 80 |
| Question Answering | question | 80 |
| RAG | rag | 80 |
| Summarization | summarization | 80 |
| Translation | translation | 80 |
| Use Case | k=1 | k=2 | k=3 | k=4 | k=5 |
|---|---|---|---|---|---|
| Coding | 1.65 | 2.06 | 2.29 | 2.42 | 2.52 |
| Math Reasoning | 1.69 | 2.15 | 2.43 | 2.64 | 2.75 |
| QA | 1.50 | 1.74 | 1.88 | 1.91 | 1.93 |
| Question Answering | 1.58 | 1.90 | 2.07 | 2.19 | 2.25 |
| RAG | 1.53 | 1.82 | 1.95 | 2.04 | 2.08 |
| Summarization | 1.56 | 1.89 | 2.01 | 2.13 | 2.18 |
| Translation | 1.62 | 2.00 | 2.22 | 2.37 | 2.44 |
1GUIDELLM__MAX_CONCURRENCY=128 \
2GUIDELLM__PREFERRED_ROUTE="chat_completions" \
3guidellm benchmark \
4 --target "http://localhost:8000/v1" \
5 --data "RedHatAI/speculator_benchmarks" \
6 --data-args '{"data_files": "HumanEval.jsonl"}' \
7 --rate-type throughput \
8 --max-seconds 300 \
9 --output-path "gpt-oss-20b-HumanEval.json"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}}}'