lmcoleman commited on
Commit
f1d183d
·
verified ·
1 Parent(s): f5066a6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +18 -2
README.md CHANGED
@@ -27,12 +27,27 @@ every surviving candidate, imatrix-weighted encoding, and stream-aware sampling.
27
  tier's per-group precision layout was selected from 16 fully-measured candidate hybrids
28
  rather than applied uniformly.
29
 
30
- > **Text-only.** The base is a Qwen3.5-VL vision-language model; the vision tower was
31
- > dropped during conversion, so these are text (LLM) quants — no image input.
 
 
32
 
33
  The embedded **MTP (multi-token-prediction) head** is preserved, so these work with
34
  llama.cpp speculative decoding using the *same file* as its own draft model.
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  ## Files
37
 
38
  | File | Size | PPL (wikitext-2) | vs BF16 baseline (6.7803) | Layout |
@@ -62,6 +77,7 @@ llama-server -m ThinkingCap-Qwen3.6-27B-Q4_K_M.gguf \
62
 
63
  - Chat template is embedded (no patching needed); architecture `qwen35`.
64
  - Group legend: E=embeddings, H=lm head, Q/K/O=attention, U/D=FFN up/down, S=SSM (mamba) ops.
 
65
  - This is a hybrid (linear-attention + attention) architecture; SSM conv/1D tensors are
66
  kept at F32 where the block size requires it.
67
  - Sibling repo with AMD-native (ROCmFPX fork-only) builds of the same layouts:
 
27
  tier's per-group precision layout was selected from 16 fully-measured candidate hybrids
28
  rather than applied uniformly.
29
 
30
+ > **Vision-capable.** The base is a Qwen3.5-VL vision-language model. These GGUFs are the
31
+ > quantized **text** model; pair any of them with the included
32
+ > `mmproj-ThinkingCap-Qwen3.6-27B-f16.gguf` (the f16 vision projector, 0.86 GiB) to run
33
+ > image input. Verified end-to-end (image description) with the Q4 quant + this mmproj.
34
 
35
  The embedded **MTP (multi-token-prediction) head** is preserved, so these work with
36
  llama.cpp speculative decoding using the *same file* as its own draft model.
37
 
38
+ ## Vision (image input)
39
+
40
+ Serve any tier with the vision projector:
41
+
42
+ ```bash
43
+ llama-server -m ThinkingCap-Qwen3.6-27B-Q4_K_M.gguf \
44
+ --mmproj mmproj-ThinkingCap-Qwen3.6-27B-f16.gguf \
45
+ -c 8192 -ngl 99 -fa on
46
+ ```
47
+
48
+ Then send images via the OpenAI-compatible `image_url` content field. (MTP speculative
49
+ decoding and vision can each be enabled; combine flags as needed.)
50
+
51
  ## Files
52
 
53
  | File | Size | PPL (wikitext-2) | vs BF16 baseline (6.7803) | Layout |
 
77
 
78
  - Chat template is embedded (no patching needed); architecture `qwen35`.
79
  - Group legend: E=embeddings, H=lm head, Q/K/O=attention, U/D=FFN up/down, S=SSM (mamba) ops.
80
+ - `mmproj-*-f16.gguf` (0.86 GiB) is the vision projector — required only for image input.
81
  - This is a hybrid (linear-attention + attention) architecture; SSM conv/1D tensors are
82
  kept at F32 where the block size requires it.
83
  - Sibling repo with AMD-native (ROCmFPX fork-only) builds of the same layouts: