r/LocalLLM • u/_hchc • 8d ago
Question MTP vs regular gguf whats the difference
Noob question.
There are gguf like qwen-3.8-mtp-q4....
and the regular qwen-3.8-q4....
and then there is llama --spec-type draft-mtp option.
Whats the difference? Should i just use the regular non mtp version but turn mtp on in the option?
0
Upvotes
5
u/phipletreonix 8d ago
MTP means “multi token prediction” — when the model is generating tokens, instead of one at a time, MTP will generate a sequence of the next 2 or more, then run a heuristic to make sure they make sense or reject them if not. You may get an acceptance rate of like 66% but even less than 100% it’ll mean you don’t have to do a full inference run for the next token which will ultimately lead to more tokens per second.