nom666 commited on
Commit
768649c
·
verified ·
1 Parent(s): 4f23bee

Update MTPLX Forge README

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md CHANGED
@@ -2,6 +2,51 @@
2
  language: en
3
  pipeline_tag: text-generation
4
  library_name: mlx
 
 
5
  tags:
6
  - mlx
 
 
 
 
 
 
 
7
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  language: en
3
  pipeline_tag: text-generation
4
  library_name: mlx
5
+ license: apache-2.0
6
+ base_model: Jackrong/Qwopus3.6-27B-Coder
7
  tags:
8
  - mlx
9
+ - mtplx
10
+ - mtp
11
+ - speculative-decoding
12
+ - apple-silicon
13
+ - qwopus
14
+ - code
15
+ - agent
16
  ---
17
+
18
+ # Qwopus3.6-27B-Coder · MTPLX 4-bit Speed
19
+
20
+ The first [MTPLX](https://github.com/youssofal/MTPLX) build of **Qwopus3.6-27B-Coder** — Jackrong's agentic-coding fine-tune of Qwopus3.6-27B-v2 (repo-level coding, multi-turn tool orchestration, 67.0% SWE-bench Verified in no-thinking mode), with native multi-token-prediction speculative decoding on Apple Silicon. No external drafter, exact rejection sampling. 8-bit sibling: [nom666/Qwopus3.6-27B-Coder-MTPLX-8bit-Quality](https://huggingface.co/nom666/Qwopus3.6-27B-Coder-MTPLX-8bit-Quality).
21
+
22
+ Forged with `mtplx forge build` from the original BF16 [Jackrong/Qwopus3.6-27B-Coder](https://huggingface.co/Jackrong/Qwopus3.6-27B-Coder):
23
+
24
+ - **Body:** flat 4-bit MLX affine quantization, group size 64
25
+ - **MTP head:** preserved in BF16 (`mtp_policy: keep_bf16`), packed as `mtp.safetensors` sidecar
26
+ - **Size:** ~15 GB
27
+ - **Calibrated MTP contract** included (`mtplx_runtime.json`)
28
+
29
+ ## Measured performance (Apple M5 Max, 128 GB, MTPLX 1.0.3)
30
+
31
+ | Mode | Decode | Acceptance by depth |
32
+ |---|---|---|
33
+ | **MTP depth 2 (winner)** | **57.3 tok/s** | 97% / 90% |
34
+
35
+ The Coder's MTP head was trained with draft=2, which shows: depth-2 acceptance is exceptional and depth 2 beats depth 3. Verification suite: `long-code-uncapped`, 2048-token budget. Use `--depth 2` when serving.
36
+
37
+ ## Usage
38
+
39
+ ```bash
40
+ brew install youssofal/mtplx/mtplx # or pipx install mtplx
41
+ mtplx pull nom666/Qwopus3.6-27B-Coder-MTPLX-4bit-Speed
42
+ mtplx quickstart --model nom666/Qwopus3.6-27B-Coder-MTPLX-4bit-Speed \
43
+ --depth 2 --paged-kv-quantization q8 --batching-preset agent --reasoning off
44
+ ```
45
+
46
+ Serves OpenAI-compatible (`/v1/chat/completions`) and Anthropic-compatible (`/v1/messages`) endpoints with warm-prefix KV reuse, SSD session cache, continuous batching, and vision support. Full 262144-token context; only 16 of 64 layers carry KV (hybrid Gated DeltaNet architecture).
47
+
48
+ ## Notes
49
+
50
+ - This fine-tune targets no-thinking agentic use — pair with `--reasoning off`.
51
+ - Runtime contract tier is `forge-local`: verified on the forging machine (M5 Max).
52
+ - Quantized with MTPLX 1.0.3 Forge. All credit for the fine-tune to Jackrong; base Qwen3.6-27B (Apache-2.0).