shrango commited on
Commit
aecbfd2
·
verified ·
1 Parent(s): 9bba71e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -4
README.md CHANGED
@@ -1,6 +1,45 @@
1
- This is the PosS-2 model of the paper **PosS:Position Specialist Generates Better Draft for Speculative Decoding**
 
2
 
3
- If the code fails to auto-download the models, you may mannually download the following files.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
- - `pytorch_model.bin`: Model weights
6
- - `config.json`: Model config
 
1
+ cense: cc-by-nc-nd-4.0
2
+ ---
3
 
4
+ # PosS: Position Specialist for Speculative Decoding
5
+
6
+ This repository provides the model checkpoint for **PosS (Position Specialist)**, a speculative decoding method proposed in the paper:
7
+
8
+ > **PosS: Position Specialist Generates Better Draft for Speculative Decoding**
9
+
10
+ PosS improves speculative decoding by training a position-specialized draft model that generates higher-quality drafts, leading to improved efficiency and acceptance rates during decoding.
11
+
12
+ ---
13
+
14
+ ## 🔗 Code
15
+
16
+ The full implementation, training details, and evaluation scripts are available at:
17
+
18
+ 👉 **GitHub:** https://github.com/shrango/PosS
19
+
20
+ ---
21
+
22
+ ## 📦 Files
23
+
24
+ If the model is not automatically downloaded by your framework, you may manually download the following files from this repository:
25
+
26
+ - `pytorch_model.bin` — model weights
27
+ - `config.json` — model configuration
28
+
29
+ ---
30
+
31
+ ## 📖 Citation
32
+
33
+ If you use this model or the PosS method in your research, please cite:
34
+
35
+ ```bibtex
36
+ @misc{huang2025posspositionspecialistgenerates,
37
+ title = {POSS: Position Specialist Generates Better Draft for Speculative Decoding},
38
+ author = {Langlin Huang and Chengsong Huang and Jixuan Leng and Di Huang and Jiaxin Huang},
39
+ year = {2025},
40
+ eprint = {2506.03566},
41
+ archivePrefix= {arXiv},
42
+ primaryClass = {cs.CL},
43
+ url = {https://arxiv.org/abs/2506.03566}
44
+ }
45