Text Generation
GGUF
English
Merge
task-vector
dare-ties
layer-weighted
qwen3
qwen35
reasoning
code
llama.cpp
experimental
conversational
Instructions to use Jackrong/Qwopus3.6-27B-Fusion-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Jackrong/Qwopus3.6-27B-Fusion-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Jackrong/Qwopus3.6-27B-Fusion-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Jackrong/Qwopus3.6-27B-Fusion-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Jackrong/Qwopus3.6-27B-Fusion-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M
- Ollama
How to use Jackrong/Qwopus3.6-27B-Fusion-GGUF with Ollama:
ollama run hf.co/Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use Jackrong/Qwopus3.6-27B-Fusion-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Jackrong/Qwopus3.6-27B-Fusion-GGUF with Docker Model Runner:
docker model run hf.co/Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M
- Lemonade
How to use Jackrong/Qwopus3.6-27B-Fusion-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwopus3.6-27B-Fusion-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Jackrong/Qwopus3.6-27B-Fusion-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Jackrong/Qwopus3.6-27B-Fusion-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "Jackrong/Qwopus3.6-27B-Fusion-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
File size: 20,100 Bytes
0575f66 b4ced22 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | ---
license: other
license_name: qwen
license_link: https://huggingface.co/Qwen/Qwen3.6-27B/blob/main/LICENSE
language:
- en
tags:
- merge
- task-vector
- dare-ties
- layer-weighted
- qwen3
- qwen35
- reasoning
- code
- gguf
- llama.cpp
- experimental
base_model:
- Qwen/Qwen3.6-27B
pipeline_tag: text-generation
library_name: gguf
---
<div align="center">
<img src="assets/hero-banner.png" alt="Qwopus3.6-27B Fusion β one 27B that reasons and codes, no skill lost" width="100%">
<h3>βΆ <a href="https://huggingface.co/spaces/KyleHessling1/ORBITAL">PLAY <i>ORBITAL</i> β a game this model built, live in your browser</a> β</h3>
</div>
> **Research preview.** This model attempts to combine the **reasoning** capability of
> `Qwopus3.6-27B-v2` with the **code-execution** capability of `Qwopus3.6-27B-Coder` β in a single 27B
> model, *without significant loss to either* skill. In practice it behaves like a production model
> with both capabilities fused, but it has **not** yet been through a full rigorous evaluation. If you
> find issues, please reach out on X β **[@kylehessling1](https://x.com/kylehessling1)**.
- **Format:** GGUF, `Q4_K_M` (~16.5 GB) β runs on a single 24β32 GB GPU via `llama.cpp`.
- **Architecture:** `qwen35` hybrid (linear-attention + periodic full-attention), 27B params, 64 layers.
- **Native context:** 262,144 tokens. Verified clean (needle + termination) to 60K.
- **Modes:** thinking (reasoning) **on** by default; strong agentic/coding behavior.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
## β TL;DR
| | |
|---|---|
| **Base / anchor** | `Qwen/Qwen3.6-27B` (both parents descend from it) |
| **Parent A β reasoning** | `Qwopus3.6-27B-v2` β donates the merge base + embeddings/head/norms/MTP |
| **Parent B β code** | `Qwopus3.6-27B-Coder` β delta source, injected with depth-increasing weight |
| **Merge math** | `W(L) = V2 + Ξ±(L)Β·(Coder β V2)`, Ξ± linear ramp **0.12 (early) β 0.48 (late)** |
| **Frozen (copied from A)** | `embed_tokens`, `lm_head`, all `norm`, `mtp`/NextN, any vision tensors |
**Headline results** (Q4_K_M, thinking-on unless noted):
| Capability | Score | Stability | Score |
|---|---|---|---|
| HumanEval | **94.5%** | Termination @ temp 0.2 & 0.9 | **4/4 clean** |
| MBPP | **87.9%** | Temp sweep 0.5β0.9 | **10/10 clean** |
| GSM8K | **95.0%** | Seed variance (HumanEval) | **std 0.0** |
| MATH-500 | **62β64.7%** | Long-context needle+term @ 60K | **perfect** |
| IFEval (strict) | **82.8%** | SWE-bench Verified (astropy, 0:15) | **7/15 (47%)** |
> Against the alternatives on the same astropy slice: **Fusion 7/15** > equal-weight DARE-TIES **5/15** > DUS-38B frankenmerge **3/15**.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
## β Where it shines β the one-stop creative programming agent
> **Best used as a single, closed-loop agentic creative programmer.** In a *build β run β self-fix*
> loop, Fusion is at its strongest as **one agent that plans, writes, and debugs on its own** β the
> reasoningβcoding balance lets it close the loop by itself (see the ORBITAL / FLUX demos below,
> where it root-caused and fixed its own bugs from Playwright error reports).
>
> This is a different niche than its parents. The **`Coder`** model is excellent for **coding under
> active steering**, or as a **solid orchestration model** driving other tools/agents. **Fusion**, by
> contrast, is the ideal **one-stop creative builder** β you hand it a goal and it carries the whole
> creative-programming loop end-to-end.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
## β Why I chose to make this merge
Two finetunes of the same base diverge into complementary specialists: one gets better at
multi-step reasoning, the other at writing code β but each pays for it. In particular the **coding
finetune becomes unstable in thinking mode** (it loops / degrades at low temperature). The goal was
a single model that keeps the reasoner's stability *and* the coder's skill.
My naive approaches, one of them eroneously proposed by Claude Fable, average the two, or run an equal-weight DARE-TIES merge from the common base. These alternatives underperformed and the geometry explains why.
### β The lineage
Because the coder model descended from the v2 version, the coders additions can be evaluated against the v2 by analyzing the delta. Projecting the coding
delta onto the reasoning delta reveals:
```
proj(ΞCoder Β· ΞV2 / |ΞV2|Β²) β 0.4 in early layers β β 1.0 in late layers
```
That ramp to 1.0 means **late layers of the coder already contain V2's full reasoning delta**. And:
- The coding delta is **~1.8Γ the magnitude** of the reasoning delta.
- In **early layers** the coding delta is **anti-aligned** with reasoning (`cos < 0`) β the coder
*partially reverted* V2's early-layer reasoning/control representations. **That anti-alignment is
the measured source of the coder's thinking-mode instability.**
An equal-weight merge (both task vectors added from the base) therefore commits two errors:
1. It **double-counts V2's reasoning delta** (the coder already contains it), and
2. It **imports the full early-layer destabilizing coding delta** at 100% strength.
### β The fix
Because the coder sits "downstream" of V2, the correct anchor is **V2 itself**, not the shared base
β this avoids the double-count. Then, instead of a constant fraction of the coding delta everywhere,
inject it with a **depth-increasing schedule**:
- **Early layers (Ξ± β 0.12):** inject *little* coding delta β **protect** V2's reasoning/control
reps exactly where the coder damaged them.
- **Late layers (Ξ± β 0.48):** inject *more* coding delta β add coding skill where the two parents
already agree (proj β 1.0) and it's safe.
The shape of the Ξ± ramp is dictated by the geometry, not hand-tuning. Embeddings, LM head, norms,
and the MTP head are identical across all three models (delta β 0), so they're copied verbatim from
V2 rather than merged.
<div align="center">
<img src="assets/geometry.png" alt="Weight geometry β coder descends from V2, its delta is 1.8x and anti-aligned in early layers; the alpha ramp injects coding 0.12 early to 0.48 late" width="100%">
</div>
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
## β How it was built
**Merge.** The parents use Qwen's **hybrid attention schedule** (most layers linear/DeltaNet; every
4th layer full softmax attention). Off-the-shelf `mergekit` **cannot** merge this architecture β it
templates `linear_attn.*` onto every layer and errors on the full-attention layers. So the merge is
a **custom streaming task-vector routine** operating directly on the (identical) tensor keys, immune
to arch templating. The full, reproducible script ships in this repo as
[`merge_layerweighted.py`](./merge_layerweighted.py):
```python
def alpha(L, a_early, a_late):
return a_early + (a_late - a_early) * (L / (NLAYERS - 1)) # smooth linear ramp by depth
# per decoder tensor at layer L:
out = (v2 + alpha(L, 0.12, 0.48) * (coder - v2)).to(torch.bfloat16)
# embeddings / lm_head / norms / mtp / vision: copied from V2 verbatim
```
**Quantize.** The bf16 merge was converted to GGUF and quantized to **`Q4_K_M`** with `llama.cpp`
(851 GGUF tensors, 16.5 GB).
**Evaluate.** Every candidate was gated at **both** temp 0.2 (a termination stress test) and temp
0.9 (the finetune operating point) β "clean only at high temp" is riding sampling entropy, not
stability. This model is clean at both.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
## β Demonstrations β driving a local agentic coding loop
Every artifact below was generated by **this model** running as the backend of an agentic coding
loop (OpenCode / Claude Code), building single-file HTML/JS apps end-to-end, then **verified with
headless Playwright**. What stood out isn't just that it writes polished games β it's that when the
Playwright harness handed back error reports, **the same model root-caused and fixed its own bugs**
with precise, correct diagnoses (excerpts below).
### π ORBITAL β physics space-arcade (thinking-on)
*Setup:* "Build a complete, physics-driven, visually stunning arcade space game as a single
self-contained index.html β gravity is the weapon." *Outcome:* **built and runs cleanly, zero
console errors**, real 2-body gravity, particle trails, wave HUD, and it even self-balance-tuned its
own difficulty. 1,150 lines.
<div align="center">
<h3>βΆ <a href="https://huggingface.co/spaces/KyleHessling1/ORBITAL">PLAY IT LIVE β huggingface.co/spaces/KyleHessling1/ORBITAL</a> β</h3>
<i>(runs entirely in your browser β the exact single file this model wrote)</i>
</div>
| Title screen | Live gameplay (Wave 1) |
|---|---|
|  |  |
The same loop also produced three more complete, self-contained games β **PRISM DEFENSE** (neon
tower defense, 1,074 lines), **NEON SERPENT** (synthwave Snake with smooth interpolated movement,
657 lines), and **STARLIGHT SURVIVORS** (survivors-style auto-shooter, 555 lines). Each was built,
Playwright-tested, and where the harness surfaced a bug the model root-caused and fixed it itself
(e.g. a tower-targeting `bestDist = Infinity` that should have been `-Infinity`; three weapon
upgrades missing a `fireTimer` init that made `fireTimer -= dt` evaluate to `NaN`). The impressive
part is the quality of the model's own debugging inside a *build β error report β self-fix* loop,
not flawless one-shot output.
### π FLUX β a full Trello-style Kanban dashboard (the strongest capability demo)
The most demanding build: a complete **single-file Kanban app** (`~3,373 lines`, no backend,
localStorage persistence), assembled by the model over **five steered phases**, each a fresh session
that read a spec + the current file and extended it β Playwright-verified between phases.

**What works** (all Playwright-driven against real interactions): boards / lists / cards CRUD,
**drag-and-drop** cross-list moves with persistence, a markdown card modal with live preview,
labels / due dates / checklists, keyboard shortcuts, and **live search/filter** β below, typing
`drag` narrows to the matching card in real time:

**Analysis.** Over five phases the model needed only **two** corrections, each caught by Playwright
and fixed by the model: an undeclared `dragMoveOffsetX` (1-line) and a search UI that was built but
not yet wired to the filter logic.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
## β Architecture details
| Field | Value |
|---|---|
| `general.architecture` | `qwen35` (hybrid linear + full attention) |
| Parameters | ~27B (size label `27B`) |
| Layers (`block_count`) | 64 |
| Hidden size | 5120 |
| FFN size | 17408 |
| Attention heads / KV heads | 24 / 4 (GQA) |
| Full-attention interval | every 4th layer (`full_attention_interval = 4`); the rest are linear/DeltaNet |
| Linear-attn (SSM) | conv kernel 4, state 128, groups 16, inner size 6144, time-step rank 48 |
| Key/Value length | 256 |
| Vocab | 248,320 |
| Native context | 262,144 |
| RoPE | freq base 1e7, mRoPE sections `[11, 11, 10]`, partial rotary (dim 64) |
| MTP / NextN head | present in parents (copied from V2) |
| Quant | `Q4_K_M` (file type 15), quant version 2 |
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
## β Usage
### β llama.cpp (recommended)
Validated inference config (single-stream, thinking on):
```bash
llama-server \
-m tv-lw-balanced-Q4_K_M.gguf \
-c 98304 \ # 96K context; native is 262K but 96K fits comfortably on 32GB
--parallel 1 \ # SINGLE stream β validated single-stream
-ngl 999 \ # all layers on GPU
--cache-type-k q8_0 --cache-type-v q8_0 \
--reasoning on --jinja \ # thinking mode + the baked-in chat template
--host 0.0.0.0 --port 8001
```
Recommended sampling: `temperature 0.85β1.0 top_p 0.9`.
**Temperature β run it hot.** Best capability lands at **temp 0.85β1.0** (the finetune's natural
operating point, and consistent with the agentic/SWE results). Then the surprising part: **the merge
itself appears to have repaired much of the low-temperature instability** of the parent finetunes β
Fusion stays clean at temps where the bases loop and degrade (**4/4 termination at *both* 0.2 and
0.9**, 10/10 across 0.5β0.9). So, *unlike its parents*, you **can** run it cooler for more
determinism if you want, without the looping. Exactly why merging improves temperature stability
isn't fully understood, but it's consistent across every test we ran. **High temperature still
yields the best results.** Thinking mode is **on** by default and is where the model is strongest.
### β As a coding backend (Claude Code / OpenAI-compatible clients)
The `llama-server` endpoint is OpenAI-compatible and has driven multi-file app builds end-to-end. If
you point **Claude Code** at it, use a proxy that does **native AnthropicβOpenAI tool translation**
(text-encoded tools stall the agent).
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
## β Evaluation β full results
All at `Q4_K_M`, thinking-on unless noted.
**Capability:** HumanEval 94.5% Β· MBPP 87.9% Β· GSM8K 95.0% Β· MATH-500 62% (64.7% subset) Β·
IFEval-strict 82.8%.
**Stability** (the axis that separated this project's winners from losers):
| Test | Result |
|---|---|
| Termination @ temp 0.2 / 0.9 | 4/4 / 4/4 clean |
| Temperature sweep 0.5β0.9 | 10/10 clean (9/10 at 0.1 & 1.0) |
| Seed variance β HumanEval / MATH | std 0.0 / 2.36 |
| Long-context needle + termination | perfect to 60K tokens, zero looping |
**Agentic (SWE-bench Verified, astropy slice, thinking-on):** Fusion **7/15 (47%)** >
equal-weight DARE-TIES **5/15** > DUS-38B frankenmerge **3/15**.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
## β Limitations
- **Not yet rigorously evaluated.** No large-scale safety alignment / RLHF / red-teaming. Inherits
biases and limits of the Qwen base and both parent finetunes.
- The astropy **+2 (7/15 vs 5/15) is within noise** on n=15 β the geometry approach is validated as
*sound and directionally better*, not a large agentic jump.
- On the hardest agentic instances the model can over-deliberate and hit the generation cap without
submitting; capping `max_tokens` (~8K) mitigates this.
- Validated primarily at `Q4_K_M`; other quants should work but aren't separately benchmarked.
> **Found a problem? β** please reach out on X: **[@kylehessling1](https://x.com/kylehessling1)**.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
## β Method credit & acknowledgments
The path to this model was not a straight line, and the credit is honest about that:
- **[Jackrong](https://huggingface.co/Jackrong) β base-model builder, collaborator, and good friend.**
This fusion stands entirely on his work: he built both parent finetunes
([`Qwopus3.6-27B-v2`](https://huggingface.co/Jackrong/Qwopus3.6-27B-v2) and
[`Qwopus3.6-27B-Coder`](https://huggingface.co/Jackrong/Qwopus3.6-27B-Coder)) that this merge fuses.
Beyond the models, his counsel and contributions throughout were **priceless** β this project simply
does not exist without him. **Go follow his work β [huggingface.co/Jackrong](https://huggingface.co/Jackrong).**
- The **initial naive approaches** β a 38B depth-upscaled (DUS) frankenmerge and an equal-weight
DARE-TIES merge from the shared base β were **proposed by Fable**. Both underdelivered. In
hindsight, those plans conspicuously **omitted the one nuance that turned out to be decisive**: the
*lineage* relationship between the parents (that the coder is a descendant of V2). Without that
nuance, an equal-weight merge is essentially guaranteed to double-count V2's delta and import the
destabilizing early-layer coding delta at full strength β which is exactly what went wrong.
- **Grok 4.5** was **instrumental in the final, working merge.** Its analysis surfaced the
parentβdescendant lineage from the weight geometry and motivated the **layer-weighted delta-scale**
recipe (protect early reasoning, inject coding late) that this model is built on.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
## β Lineage / provenance
```
Qwen/Qwen3.6-27B (shared base)
βββ Qwopus3.6-27B-v2 (reasoning finetune) βββ
βββ Qwopus3.6-27B-Coder (code finetune, β β descends from V2 (projβ1.0 in late layers)
itself downstream of V2) β
βΌ
Qwopus3.6-27B-Fusion = V2 + Ξ±(L)Β·(Coder β V2), Ξ±: 0.12 β 0.48 by depth
```
## β License
A merge of derivatives of `Qwen/Qwen3.6-27B`; usage is governed by the **Qwen base model license**.
The parent finetunes are personal research models. No third-party training data is redistributed
here β only merged weights and the merge script. Comply with the upstream Qwen license.
## β Reproduction
```bash
python merge_layerweighted.py --out ./Qwopus3.6-27B-Fusion --a-early 0.12 --a-late 0.48
# then convert + quantize with llama.cpp: convert_hf_to_gguf.py β llama-quantize ... Q4_K_M
```
If you build on the *method* (geometry-grounded, layer-weighted task-vector merging of a
parent/descendant finetune pair), a mention of **"FusionThink layer-weighted delta-scale merge"** is
appreciated.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
<div align="center">
<i>Built and evaluated locally on a single RTX 5090. Model produced by Kyle Hessling
(<a href="https://x.com/kylehessling1">@kylehessling1</a>).</i>
</div>
|