datasysdev commited on
Commit
f5d4c18
·
verified ·
1 Parent(s): b1978ad

Update model card with runtime GGUF links

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md CHANGED
@@ -23,6 +23,29 @@ retrieved native KV vectors.
23
 
24
  This is a research prototype, not a production sparse-attention runtime.
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  ## Current status
27
 
28
  Validated clean pilot:
 
23
 
24
  This is a research prototype, not a production sparse-attention runtime.
25
 
26
+ ## Extremely preliminary llama.cpp runtime GGUFs
27
+
28
+ Merged ANN GGUFs from the llama.cpp runtime branch are available under
29
+ [`gguf/`](https://huggingface.co/datasysdev/ann-sparseattention/tree/main/gguf):
30
+
31
+ | variant | hosted file | intended use |
32
+ |---|---|---|
33
+ | 6-layer pilot | [`Qwen3-4B-Instruct-2507-F16-ann-6layer-k128-v2.gguf`](https://huggingface.co/datasysdev/ann-sparseattention/blob/main/gguf/Qwen3-4B-Instruct-2507-F16-ann-6layer-k128-v2.gguf) | best strict HNSW password-recall behavior so far |
34
+ | all32 reserved-edge | [`Qwen3-4B-Instruct-2507-F16-ann-all32-k128-v2.gguf`](https://huggingface.co/datasysdev/ann-sparseattention/blob/main/gguf/Qwen3-4B-Instruct-2507-F16-ann-all32-k128-v2.gguf) | strongest broad-layer exact-runtime speed/quality candidate |
35
+ | all36 full substitution | [`Qwen3-4B-Instruct-2507-F16-ann-all36-k128-v2.gguf`](https://huggingface.co/datasysdev/ann-sparseattention/blob/main/gguf/Qwen3-4B-Instruct-2507-F16-ann-all36-k128-v2.gguf) | full-substitution stress test; visibly weaker quality |
36
+
37
+ The corresponding runtime branch is
38
+ [`feat/llama-ann-runtime`](https://github.com/unixsysdev/ann-sparseattention/tree/feat/llama-ann-runtime).
39
+ That branch intentionally contains only the runtime snapshot and its logs.
40
+
41
+ These GGUFs are extremely preliminary. The current llama.cpp integration is
42
+ useful for reproducing CPU/ROCm correctness and early speed tests, but it is
43
+ not a production sparse-attention runtime. The HNSW path performs real
44
+ approximate ANN candidate selection, but currently rebuilds indices during
45
+ decode; it validates behavior rather than final latency. The exact top-K path
46
+ is the current correctness oracle and showed an early 33.6k-context speed
47
+ signal for all32, but prompt quality tests remain synthetic and incomplete.
48
+
49
  ## Current status
50
 
51
  Validated clean pilot: