An advanced 30-layer Qwen3 variant using swap, interpolation, and skip-bridge surgery.
Created through innovative layer surgery combining multi-swap, interpolation, and bridge (skip connection) techniques. Scores 94.3/100 — a 6.5-point improvement over the original Qwen3-1.7B baseline (87.8/100) and the highest score achieved in two phases of experimentation across ~250 configurations. (I have my own benchmarks, so results may vary if you run your own tests.)
Available Quantizations
Quantization
Bits/Weight
Description
Download
Q8_0
8.00
Highest quality, virtually lossless (USE THIS ONE)
This model was created by applying three innovative surgical operations to Qwen/Qwen3-1.7B:
Multi-swap: layers 12↔13 and 16↔17 — Reorders attention blocks at two critical points in the network for improved representational flow through the mid-layers.
Interpolation: layers 20 & 22 (α=0.5) — Creates a new layer by blending the weights of layers 20 and 22 at equal proportions, producing a smoother transition in the upper layers.
Bridge (skip connection): layer 5 → after layer 20 — Copies early-layer representations (layer 5) and inserts them after layer 20, creating a skip connection that helps preserve low-level features deep in the network.
Why These Operations Work
Multi-swap corrects suboptimal layer ordering that emerged from pre-training, allowing better gradient flow through the network's critical middle section.
Interpolation creates a synthetic transition layer that smooths the representation gap between layers 20 and 22, reducing the information bottleneck.
Bridge/skip connections address the "forgetting problem" in deep networks by reintroducing early feature representations at later stages — a technique inspired by ResNet's residual connections but applied at the transformer layer level.
Evaluated using a comprehensive test suite with 17 factual questions, 2 completion coherence tests, perplexity measurements, repetition analysis, and thinking/non-thinking mode verification.
Features
Thinking mode: Full <think> / </think> reasoning support — toggle via enable_thinking parameter
Non-thinking mode: Direct responses without chain-of-thought overhead
Tool calling: Full function/tool calling support
System prompts: Standard system message support
Chat template: Qwen3 ChatML template embedded in the GGUF
Usage
With Ollama
# Download the GGUF and create from Modelfile
cat > Modelfile << 'EOF'
FROM ./Qwen3-g023-tiny-v2-Q8_0.gguf
PARAMETER temperature 1.0
PARAMETER top_p 0.95
PARAMETER top_k 45
PARAMETER min_p 0.1
PARAMETER num_ctx 40000
PARAMETER mirostat 2
PARAMETER mirostat_tau 5.0
PARAMETER mirostat_eta 0.1
PARAMETER repeat_last_n 16384
PARAMETER repeat_penalty 1.1
PARAMETER presence_penalty 0.5
PARAMETER frequency_penalty 1.0
TEMPLATE """{{- if .System }}
<|im_start|>system
{{ .System }}<|im_end|>
{{ end }}
{{- range .Messages }}
{{- if eq .Role "user" }}
<|im_start|>user
{{ .Content }}<|im_end|>
{{- else if eq .Role "assistant" }}
<|im_start|>assistant
{{ .Content }}<|im_end|>
{{- end }}
{{- end }}
<|im_start|>assistant
"""
SYSTEM "You are a helpful assistant."
EOF
ollama create qwen3-tiny-v2 -f Modelfile
ollama run qwen3-tiny-v2
fromllama_cppimportLlamamodel=Llama("Qwen3-g023-tiny-v2-Q8_0.gguf",n_ctx=4096)response=model.create_chat_completion(messages=[{"role":"system","content":"You are a helpful assistant."},{"role":"user","content":"What is the capital of France?"},],temperature=0.6,)print(response["choices"][0]["message"]["content"])
System Requirements
Quantization
RAM (CPU)
VRAM (GPU)
Q8_0
~2.2 GB
~2.2 GB
Q6_K
~1.8 GB
~1.8 GB
Q4_K_M
~1.4 GB
~1.4 GB
Q3_K_M
~1.2 GB
~1.2 GB
Q2_K
~1.0 GB
~1.0 GB
v1 vs v2
This model (v2) is the Phase 2 champion, using advanced multi-operation surgery for the highest overall score.