Add model card and metadata
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1 +1,28 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
library_name: transformers
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# TAPS: Task-Aware Proposal Distributions for Speculative Sampling
|
| 8 |
+
|
| 9 |
+
This model is a lightweight drafter introduced in the paper [TAPS: Task Aware Proposal Distributions for Speculative Sampling](https://huggingface.co/papers/2603.27027).
|
| 10 |
+
|
| 11 |
+
## Overview
|
| 12 |
+
TAPS (Task-Aware Proposal Distributions for Speculative Sampling) studies how the draft training distribution shapes speculative decoding quality. Using specialist drafters (like HASS and EAGLE-2), the work demonstrates that speculative decoding performance depends significantly on the match between draft training data and downstream workloads.
|
| 13 |
+
|
| 14 |
+
This repository contains a lightweight LLaMA-style drafter designed to be used in conjunction with a larger verifier model (such as Meta-Llama-3-8B-Instruct) to accelerate autoregressive generation.
|
| 15 |
+
|
| 16 |
+
## Resources
|
| 17 |
+
- **Paper**: [TAPS: Task Aware Proposal Distributions for Speculative Sampling](https://huggingface.co/papers/2603.27027)
|
| 18 |
+
- **GitHub Repository**: [Moe-Zbeeb/TAPS](https://github.com/Moe-Zbeeb/TAPS)
|
| 19 |
+
|
| 20 |
+
## Citation
|
| 21 |
+
```bibtex
|
| 22 |
+
@article{zbib2026taps,
|
| 23 |
+
title={TAPS: Task Aware Proposal Distributions for Speculative Sampling},
|
| 24 |
+
author={Zbib, Mohamad and Bazzi, Mohamad and Mohanna, Ammar and Ghanem, Bernard and Hammoud, Hasan Abed Al Kader},
|
| 25 |
+
year={2026},
|
| 26 |
+
note={Technical report}
|
| 27 |
+
}
|
| 28 |
+
```
|