jackasda211233 commited on
Commit
ade32e7
·
verified ·
1 Parent(s): 1058d3a

Add prominent vision banner with clickable mmproj download links

Browse files
Files changed (1) hide show
  1. README.md +17 -6
README.md CHANGED
@@ -25,6 +25,10 @@ base_model:
25
 
26
  # Qwen3.6 AEON RYS Agentic-Coder PatchCode GGUF
27
 
 
 
 
 
28
  > **⚠️ Required runtime — read first.** This model **must be used with** the custom AEON ik-llama fork:
29
  >
30
  > **https://github.com/noonr48/qwen36-aeon-ik-llama**
@@ -58,24 +62,31 @@ Use these as merged GGUF files. They are not intended to be loaded as live LoRAs
58
  The recommended practical deployment file is the `IQ4_NL` GGUF. The `BF16` GGUF is provided as a single source-quality exploration artifact, not the normal runtime target.
59
 
60
 
 
61
  ## Vision Support (mmproj)
62
 
63
- These models support image input. Qwen3.6-27B is natively a vision-language model the included **mmproj** (multimodal projector) files enable image understanding when used with the `--mmproj` flag in llama.cpp / ik-llama.
64
 
65
  The projector is extracted from the official [Qwen/Qwen3.6-27B](https://huggingface.co/Qwen/Qwen3.6-27B) base model. Since text fine-tuning does not modify the vision encoder, one projector works across all three RYS variants (base, SignalLatch, PatchCode).
66
 
67
- | File | Precision | Size | Use |
 
 
68
  |---|---|---:|---|
69
- | `mmproj-Qwen3.6-27B-base-f32.gguf` | F32 (full precision) | 1.8 GB | Maximum accuracy, most VRAM |
70
- | `mmproj-Qwen3.6-27B-base-f16.gguf` | F16 (half precision) | 885 MB | **Recommended** best balance |
71
- | `mmproj-Qwen3.6-27B-base-q8_0.gguf` | Q8_0 (8-bit quantized) | 601 MB | Smallest, minimal quality loss |
 
 
72
 
73
  ### Usage
74
 
75
  Add `--mmproj` to your llama-server command:
76
 
77
  ```bash
78
- ./build/bin/llama-server -m Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.IQ4_NL.gguf --mmproj mmproj-Qwen3.6-27B-base-f16.gguf --jinja -ngl 999 -c 200000
 
 
79
  ```
80
 
81
  Then send images via the standard OpenAI-compatible API:
 
25
 
26
  # Qwen3.6 AEON RYS Agentic-Coder PatchCode GGUF
27
 
28
+
29
+ > **👁️ Vision Support Added** — This model now supports image input! Download a [mmproj projector file](#vision-support-mmproj) from the file list and add `--mmproj` to enable vision. See the [Vision Support section](#vision-support-mmproj) below for details.
30
+
31
+
32
  > **⚠️ Required runtime — read first.** This model **must be used with** the custom AEON ik-llama fork:
33
  >
34
  > **https://github.com/noonr48/qwen36-aeon-ik-llama**
 
62
  The recommended practical deployment file is the `IQ4_NL` GGUF. The `BF16` GGUF is provided as a single source-quality exploration artifact, not the normal runtime target.
63
 
64
 
65
+
66
  ## Vision Support (mmproj)
67
 
68
+ > **This model supports vision/image input.** Qwen3.6-27B is natively a vision-language model. Download one of the mmproj (multimodal projector) files below and pass it with `--mmproj` to enable image understanding.
69
 
70
  The projector is extracted from the official [Qwen/Qwen3.6-27B](https://huggingface.co/Qwen/Qwen3.6-27B) base model. Since text fine-tuning does not modify the vision encoder, one projector works across all three RYS variants (base, SignalLatch, PatchCode).
71
 
72
+ ### Download a projector
73
+
74
+ | File | Precision | Size | Link |
75
  |---|---|---:|---|
76
+ | `mmproj-Qwen3.6-27B-base-f32.gguf` | F32 (full precision) | 1.8 GB | [⬇ Download](https://huggingface.co/jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF/resolve/main/mmproj-Qwen3.6-27B-base-f32.gguf) |
77
+ | `mmproj-Qwen3.6-27B-base-f16.gguf` | F16 (half precision) | 885 MB | [⬇ Download](https://huggingface.co/jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF/resolve/main/mmproj-Qwen3.6-27B-base-f16.gguf) |
78
+ | `mmproj-Qwen3.6-27B-base-q8_0.gguf` | Q8_0 (8-bit quantized) | 601 MB | [⬇ Download](https://huggingface.co/jackasda211233/Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode-GGUF/resolve/main/mmproj-Qwen3.6-27B-base-q8_0.gguf) |
79
+
80
+ **Recommended:** `mmproj-Qwen3.6-27B-base-f16.gguf` — best balance of quality and size.
81
 
82
  ### Usage
83
 
84
  Add `--mmproj` to your llama-server command:
85
 
86
  ```bash
87
+ ./build/bin/llama-server -m Qwen3.6-27B-AEON-RYS-Agentic-Coder-PatchCode.IQ4_NL.gguf \
88
+ --mmproj mmproj-Qwen3.6-27B-base-f16.gguf \
89
+ --jinja -ngl 999 -c 200000
90
  ```
91
 
92
  Then send images via the standard OpenAI-compatible API: