avlp12 commited on
Commit
657cda2
Β·
verified Β·
1 Parent(s): 9f57d63

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +13 -0
README.md CHANGED
@@ -28,6 +28,7 @@ Apple Silicon (MLX) **mixed-precision** quantizations of [Qwen/Qwen3.6-35B-A3B](
28
  |---|---|---|---|---|---|---|
29
  | **`main`** | **4.000** | **17.33 GB** | 24 GB+ | **102.1 tok/s** | **0.292 (19.7%)** | βœ… golden β€” GPQA-D **76.3%** |
30
  | `16gb` | 2.700 | **11.70 GB** | **16 GB** (sysctl) | **110.8 tok/s** | 1.111 (32.9%) | ⚠️ under review β€” see note |
 
31
  | `mtp-bf16` | bf16 | 1.69 GB | β€” | β€” | β€” | MTP head sidecar for self-speculative decoding |
32
 
33
  \* single-stream decode on an M3 Ultra, short prompt. A3B routing makes this the **fastest model class per GB** in the lineup β€” ~3Γ— the decode rate of the dense 27B sibling.
@@ -45,6 +46,18 @@ Everything below is **measured, not projected** β€” KL / top-1 flip on a fixed 4
45
 
46
  With int8 KV that leaves ~1.5 GiB of cache β‰ˆ **150 K tokens** of context (KV here is tiny β€” see below). 111 tok/s decode makes this the best speed-per-GB option for 16 GB machines; prefer it over the dense 27B 16 GB build when throughput matters more than per-token quality.
47
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  ## Usage
49
 
50
  ```python
 
28
  |---|---|---|---|---|---|---|
29
  | **`main`** | **4.000** | **17.33 GB** | 24 GB+ | **102.1 tok/s** | **0.292 (19.7%)** | βœ… golden β€” GPQA-D **76.3%** |
30
  | `16gb` | 2.700 | **11.70 GB** | **16 GB** (sysctl) | **110.8 tok/s** | 1.111 (32.9%) | ⚠️ under review β€” see note |
31
+ | [`vision`](https://huggingface.co/avlp12/Qwen3.6-35B-A3B-Alis-MLX-Dynamic/tree/vision) | 4.087 | **17.93 GB** | 24 GB+ | ~100 tok/s | (same text weights) | βœ… multimodal β€” vision tower restored at 8-bit |
32
  | `mtp-bf16` | bf16 | 1.69 GB | β€” | β€” | β€” | MTP head sidecar for self-speculative decoding |
33
 
34
  \* single-stream decode on an M3 Ultra, short prompt. A3B routing makes this the **fastest model class per GB** in the lineup β€” ~3Γ— the decode rate of the dense 27B sibling.
 
46
 
47
  With int8 KV that leaves ~1.5 GiB of cache β‰ˆ **150 K tokens** of context (KV here is tiny β€” see below). 111 tok/s decode makes this the best speed-per-GB option for 16 GB machines; prefer it over the dense 27B 16 GB build when throughput matters more than per-token quality.
48
 
49
+ ## Multimodal (`vision` branch)
50
+
51
+ The base checkpoint ships the full vision tower; `main` (mlx-lm path) is text-only, the
52
+ `vision` branch restores it β€” identical 4.0bpw text weights + the vision tower at 8-bit.
53
+ Verified with EN/KO OCR tests.
54
+
55
+ ```bash
56
+ pip install mlx-vlm
57
+ python -m mlx_vlm generate --model avlp12/Qwen3.6-35B-A3B-Alis-MLX-Dynamic --revision vision \
58
+ --image photo.jpg --prompt "μ΄λ―Έμ§€μ˜ ν…μŠ€νŠΈλ₯Ό μ½μ–΄μ€˜." --max-tokens 300
59
+ ```
60
+
61
  ## Usage
62
 
63
  ```python