mudler commited on
Commit
a500946
·
verified ·
1 Parent(s): 7a33537

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +71 -0
README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: Jackrong/Qwopus3.6-35B-A3B-Coder
4
+ tags:
5
+ - gguf
6
+ - quantized
7
+ - apex
8
+ - moe
9
+ - mixture-of-experts
10
+ - qwen3
11
+ - vlm
12
+ - vision
13
+ - coder
14
+ - code
15
+ ---
16
+
17
+ <!-- apex-banner-v2 -->
18
+ <div style="background-color: #f59e0b; color: white; padding: 20px; border-radius: 10px; text-align: center; margin: 20px 0;">
19
+ <h2 style="color: white; margin: 0 0 10px 0;">⚡ Each donation = another big MoE quantized</h2>
20
+ <p style="font-size: 18px; margin: 0 0 15px 0;">I host <b>30+ free APEX MoE quantizations</b> as independent research. My only local hardware is an <b>NVIDIA DGX Spark</b> (122 GB unified memory) — enough for ~30-50B-class MoEs, but <b>bigger ones (200B+) require rented compute</b> on H100/H200/Blackwell, typically $20-100 per quant.<br>If APEX quants are useful to you, your support directly funds those bigger runs.</p>
21
+ <p style="font-size: 20px; margin: 0;">
22
+ <a href="https://www.patreon.com/cw/mudler" style="color: white; text-decoration: underline;">🎉 Patreon (Monthly)</a> &nbsp;|&nbsp;
23
+ <a href="https://www.buymeacoffee.com/mudler" style="color: white; text-decoration: underline;">☕ Buy Me a Coffee</a> &nbsp;|&nbsp;
24
+ <a href="https://github.com/sponsors/mudler" style="color: white; text-decoration: underline;">⭐ GitHub Sponsors</a>
25
+ </p>
26
+ </div>
27
+
28
+ # Qwopus3.6-35B-A3B-Coder — APEX GGUF
29
+
30
+ **APEX (Adaptive Precision for EXpert Models)** quantizations of [Jackrong/Qwopus3.6-35B-A3B-Coder](https://huggingface.co/Jackrong/Qwopus3.6-35B-A3B-Coder) — a Qwen3.6-35B-A3B MoE tuned for coding.
31
+
32
+ **Brought to you by the [LocalAI](https://github.com/mudler/LocalAI) team** | [APEX Project](https://github.com/mudler/apex-quant) | [Technical Report](https://github.com/mudler/apex-quant/blob/main/paper/APEX_Technical_Report.pdf)
33
+
34
+ > This model ships an MTP head — for self-speculative decoding out of the box, see the MTP-bundled repo: [mudler/Qwopus3.6-35B-A3B-Coder-APEX-MTP-GGUF](https://huggingface.co/mudler/Qwopus3.6-35B-A3B-Coder-APEX-MTP-GGUF).
35
+
36
+ ## Available Files
37
+
38
+ | File | Profile | Best For |
39
+ |------|---------|----------|
40
+ | Qwopus3.6-35B-A3B-Coder-APEX-I-Balanced.gguf | I-Balanced | Best overall — imatrix-enhanced |
41
+ | Qwopus3.6-35B-A3B-Coder-APEX-I-Quality.gguf | I-Quality | Highest quality with imatrix |
42
+ | Qwopus3.6-35B-A3B-Coder-APEX-Quality.gguf | Quality | Highest quality (no imatrix) |
43
+ | Qwopus3.6-35B-A3B-Coder-APEX-Balanced.gguf | Balanced | General purpose |
44
+ | Qwopus3.6-35B-A3B-Coder-APEX-I-Compact.gguf | I-Compact | Consumer GPUs, imatrix-enhanced |
45
+ | Qwopus3.6-35B-A3B-Coder-APEX-Compact.gguf | Compact | Consumer GPUs |
46
+ | Qwopus3.6-35B-A3B-Coder-APEX-I-Mini.gguf | I-Mini | Smallest viable, fastest inference |
47
+ | mmproj.gguf | Vision projector | Required for image understanding |
48
+
49
+ ## What is APEX?
50
+
51
+ APEX is a quantization strategy for Mixture-of-Experts (MoE) models. It classifies tensors by role (routed expert, shared expert, attention) and applies a layer-wise precision gradient — edge layers (first/last 5) get higher precision, middle layers get more aggressive compression. I-variants use diverse imatrix calibration (chat, code, reasoning, tool-calling, agentic traces, Wikipedia).
52
+
53
+ See the [APEX project](https://github.com/mudler/apex-quant) for full details.
54
+
55
+ ## Architecture
56
+
57
+ - **Model**: Qwopus3.6-35B-A3B-Coder (Qwen3_5MoeForConditionalGeneration, Qwen3.6-35B-A3B base)
58
+ - **Layers**: 40 · **Experts**: 256 routed + 1 shared (8 active) · **Total/Active**: ~35B / ~3B
59
+ - **Attention**: Hybrid (full attention every 4th layer, linear otherwise)
60
+ - **Vision**: Built-in vision encoder (mmproj included)
61
+ - **Calibration**: v1.3 diverse dataset
62
+
63
+ ## Run with LocalAI
64
+
65
+ ```bash
66
+ local-ai run mudler/Qwopus3.6-35B-A3B-Coder-APEX-GGUF@Qwopus3.6-35B-A3B-Coder-APEX-I-Balanced.gguf
67
+ ```
68
+
69
+ ## Credits
70
+
71
+ APEX is brought to you by the [LocalAI](https://github.com/mudler/LocalAI) team. Built on [llama.cpp](https://github.com/ggerganov/llama.cpp). Base model by [Jackrong](https://huggingface.co/Jackrong).