Baekpica commited on
Commit
6728580
·
verified ·
1 Parent(s): 1cc1665

model card: record measured llama.cpp serving result and ds4 status

Browse files
Files changed (1) hide show
  1. README.md +19 -3
README.md CHANGED
@@ -94,9 +94,25 @@ the base model's embedding and LM head.
94
  llama-server -m K-EXAONE-236B-A23B-MXQ-*.gguf -ngl 99 -c 8192
95
  ```
96
 
97
- llama.cpp loads and runs these files but **ignores the MTP tensors** they are
98
- preserved in the artifact, not executed. Speculative decoding through the MTP
99
- block is engine work, tracked in the converter repository.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
 
101
  ## Limitations
102
 
 
94
  llama-server -m K-EXAONE-236B-A23B-MXQ-*.gguf -ngl 99 -c 8192
95
  ```
96
 
97
+ A mixed-quant GGUF needs no special runtime: GGUF stores a type per tensor and
98
+ ggml dispatches per tensor, which is how `Q4_K_M` itself a mixture of Q4_K,
99
+ Q6_K and Q8_0 already works. This recipe just assigns that mixture more
100
+ aggressively, and `llama-quantize` is what produced the file.
101
+
102
+ Measured, not assumed: the pilot artifact loaded in `llama-server` on 4 × RTX
103
+ PRO 6000 in **10.2 s** and generated 384 tokens of Korean at **78.1 tok/s** with
104
+ a broken-jamo ratio of **0.000**.
105
+
106
+ Two real caveats:
107
+
108
+ - llama.cpp **ignores the MTP tensors**. They are preserved in the artifact, not
109
+ executed. Speculative decoding through the MTP block is engine work.
110
+ - **ds4 cannot serve this yet.** The K-EXAONE model family in
111
+ [`Baekpica/ds4`](https://github.com/Baekpica/ds4/tree/feature/exaone-model-loader)
112
+ currently has metadata validation and the tensor binder; the forward path is
113
+ not implemented. ds4 is an MLA-only engine and K-EXAONE is plain GQA, so that
114
+ attention path has to be written. Until then llama.cpp is the way to run these
115
+ files.
116
 
117
  ## Limitations
118