Skip to content
inference.academy

glossary/serving/acceptance-rate

Acceptance rate

also acceptance length, draft acceptance

The share of a draft model's guessed tokens that the target model accepts during speculative decoding. It sets how many tokens come out of each verify pass: with per-token acceptance a and lookahead k, about (1 - a^(k+1)) / (1 - a). It is a property of the draft and of the text rather than of the technique; code and templated output accept high, open-ended prose accepts low, and a deployment measures it rather than assumes it.


3.4 tokens per step

Expected from a lookahead of 4 at 80% per-token acceptance, against one token per step without speculation.


See it happen


Related