| Paper | Blog | Leaderboard | Roadmap |
Spec-Bench is a comprehensive benchmark designed for assessing Speculative Decoding methods across diverse scenarios. Based on Spec-Bench, we aim to establish and maintain a unified evaluation platform for open-source Speculative Decoding approaches. This platform facilitates the systematic assessment of existing methods in the same device and testing environment, thereby ensuring fair comparisons.
Currently, Spec-Bench supports the evaluation of the following open source models:
- EAGLE-2
- EAGLE
- Hydra
- Medusa
- Speculative Sampling
- Prompt Lookup Decoding
- REST
- Lookahead Decoding
- SPACE
2024.10.25: We have integrated EAGLE-2 into Spec-Bench.
2024.05.29: We have integrated SPACE into Spec-Bench.
2024.05.16: Our paper has been accepted by ACL 2024 Findings 🎉 !
2024.03.12: We now support statistics for #Mean accepted tokens.
2024.03.11: We have integrated Hydra into Spec-Bench, check it out!
conda create -n specbench python=3.9
conda activate specbench
cd Spec-Bench
pip install -r requirements.txt
Download corresponding model weights (if required) and modify the checkpoint path in eval.sh
.
cd model/rest/DraftRetriever
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
maturin build --release --strip -i python3.9 # will produce a .whl file
pip3 install ./target/wheels/draftretriever-0.1.0-cp39-cp39-linux_x86_64.whl
cd model/rest/datastore
./datastore.sh # modify your own path
Select specific command line in eval.sh
, the results will be stored in data/spec_bench/model_answer/
.
./eval.sh
Obtain the corresponding speedup compared to vanilla autoregressive decoding.
python evaluation/speed.py --file-path /your_own_path/eagle.jsonl --base-path /your_own_path/vicuna.jsonl
Examine whether the generated results are equal to autoregressive decoding or not.
python evaluation/equal.py --file-path /your_own_path/model_answer/ --jsonfile1 vicuna.jsonl --jsonfile2 eagle.jsonl
We warmly welcome contributions and discussions related to Spec-Bench! If you have any suggestions for improvements or ideas you'd like to discuss, please don't hesitate to open an issue. This will allow us to collaborate and discuss your ideas in detail.
More models are welcome! - If you're aware of any open-source Speculative Decoding methods not currently included in Spec-Bench, we encourage you to contribute by submitting a pull request. This helps ensure Spec-Bench remains a comprehensive and fair benchmarking platform for comparing existing methods. Please ensure that your changes are well-tested before submission.
This codebase is built from Medusa and EAGLE. We integrated code implementations of multiple open-source Speculative Decoding methods to facilitate unified evaluation.
If you find the resources in this repository useful, please cite our paper:
@inproceedings{xia-etal-2024-unlocking,
title = "Unlocking Efficiency in Large Language Model Inference: A Comprehensive Survey of Speculative Decoding",
author = "Xia, Heming and Yang, Zhe and Dong, Qingxiu and Wang, Peiyi and Li, Yongqi and Ge, Tao and Liu, Tianyu and Li, Wenjie and Sui, Zhifang",
editor = "Ku, Lun-Wei and Martins, Andre and Srikumar, Vivek",
booktitle = "Findings of the Association for Computational Linguistics ACL 2024",
month = aug,
year = "2024",
address = "Bangkok, Thailand and virtual meeting",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2024.findings-acl.456",
doi = "10.18653/v1/2024.findings-acl.456",
pages = "7655--7671",
}