DJLougen commited on
Commit
4c57e2b
·
verified ·
1 Parent(s): bd8a459

Document embedded MTP draft head / --spec-type draft-mtp

Browse files
Files changed (1) hide show
  1. README.md +9 -0
README.md CHANGED
@@ -52,6 +52,15 @@ llama-mtmd-cli -m ornstein-v2-Q4_K_M.gguf \
52
 
53
  Quality and speed scale with quant size; **Q4_K_M** is a strong default for ~8 GB of VRAM/RAM.
54
 
 
 
 
 
 
 
 
 
 
55
  ## Support This Work
56
 
57
  I'm a PhD student in visual neuroscience at the University of Toronto who also happens to spend way too much time fine-tuning, merging, and quantizing open-weight models on rented H100s and a local DGX Spark. All training compute is self-funded — balancing GPU costs against a student budget. If my uploads have been useful to you, consider buying a PhD student a coffee. It goes a long way toward keeping these experiments running.
 
52
 
53
  Quality and speed scale with quant size; **Q4_K_M** is a strong default for ~8 GB of VRAM/RAM.
54
 
55
+ ## Speculative decoding (MTP)
56
+
57
+ Every quant embeds the model's native multi-token-prediction (MTP) draft head (GGUF `block_count` 33), so self-speculative decoding runs from a single file — no separate draft model needed:
58
+
59
+ ```bash
60
+ llama-cli -m ornstein-v2-Q4_K_M.gguf --spec-type draft-mtp \
61
+ -p "Write a Python function is_prime(n)."
62
+ ```
63
+
64
  ## Support This Work
65
 
66
  I'm a PhD student in visual neuroscience at the University of Toronto who also happens to spend way too much time fine-tuning, merging, and quantizing open-weight models on rented H100s and a local DGX Spark. All training compute is self-funded — balancing GPU costs against a student budget. If my uploads have been useful to you, consider buying a PhD student a coffee. It goes a long way toward keeping these experiments running.