CoolFace
Modelpublic

Tribbler/ornith-1.0-apex

sourceHugging Facemitupdated 3mo agoView on Hugging Face
5likes714downloads
Model Card

Ornith-1.0-35B — APEX GGUF

APEX (Adaptive Precision for EXpert Models) quantizations of Ornith-1.0-35B, an open-source coding MoE model by DeepReinforce (MIT license, based on Qwen 3.5 architecture).

These quants were produced using the apex-quant toolchain. APEX is a MoE-aware mixed-precision quantization strategy that classifies tensors by role (routed expert, shared expert, attention) and applies a layer-wise precision gradient — edge layers get higher precision, middle layers more aggressive compression.

Files

Each profile comes in two variants:

  • Base — the quantized model standalone
  • -MTP — includes the bundled MTP (multi-token prediction) head, quantized to Q8_0 (near-lossless), for self-speculative decoding via --spec-type draft-mtp. Requires a recent llama.cpp build with MTP support.

I-variants were calibrated with a diverse importance matrix (chat, code, reasoning, tool-calling, multilingual) for improved downstream accuracy.

FileProfileSizeBest For
ornith-1.0-35b-APEX-I-Mini.ggufI-Mini14 GBSmallest viable, fastest inference
ornith-1.0-35b-APEX-I-Mini-MTP.ggufI-Mini + MTP14 GBSmallest viable + self-spec
ornith-1.0-35b-APEX-Compact.ggufCompact17 GBConsumer GPUs, general purpose
ornith-1.0-35b-APEX-Compact-MTP.ggufCompact + MTP17 GBConsumer GPUs + self-spec
ornith-1.0-35b-APEX-I-Compact.gguf 🏆I-Compact17 GBConsumer GPUs, best quality at this size
ornith-1.0-35b-APEX-I-Compact-MTP.gguf 🏆I-Compact + MTP17 GBConsumer GPUs, best quality + self-spec
ornith-1.0-35b-APEX-Quality.ggufQuality22 GBHighest quality standard
ornith-1.0-35b-APEX-Quality-MTP.ggufQuality + MTP23 GBHighest quality + self-spec
ornith-1.0-35b-APEX-I-Quality.ggufI-Quality22 GBHighest quality with imatrix
ornith-1.0-35b-APEX-I-Quality-MTP.ggufI-Quality + MTP23 GBHighest quality + imatrix + self-spec
ornith-1.0-35b-APEX-Balanced.ggufBalanced24 GBGeneral purpose, best trade-off
ornith-1.0-35b-APEX-Balanced-MTP.ggufBalanced + MTP25 GBGeneral purpose + self-spec
ornith-1.0-35b-APEX-I-Balanced.gguf 🏆I-Balanced24 GBBest overall — lowest KL divergence
ornith-1.0-35b-APEX-I-Balanced-MTP.gguf 🏆I-Balanced + MTP25 GBBest overall + self-spec

Profile Precision Breakdown

APEX applies a layer-wise precision gradient to MoE expert weights. I-variants additionally use a diverse imatrix (chat, code, reasoning, tool-calling) that improves downstream accuracy and lowers KL divergence.

ProfileEdge (blk 0-4, 35-39)Near-Edge (blk 5-9, 30-34)Middle (blk 10-29)Shared ExpertAttention
QualityQ6_KQ5_KIQ4_XSQ8_0Q6_K
BalancedQ6_KQ5_KQ5_KQ8_0Q6_K
CompactQ4_KQ3_KQ3_KQ6_KQ4_K
MiniQ3KMQ3KMIQ2_SQ4_KQ3KM

Quality and Mini use a 3-tier gradient. Balanced and Compact use a simpler 2-tier gradient (edge vs. middle) — their "Near-Edge" and "Middle" columns are the same precision.

MTP Head

The bundled MTP head (blk.40.* including the nextn.* projection + norms) is quantized to Q8_0 (near-lossless) for high draft accuracy. Enable with:

bash
llama-server -m ornith-1.0-35b-APEX-...-MTP.gguf --spec-type draft-mtp

Usage Examples

llama.cpp server (basic)

bash
llama-server \
  -m ornith-1.0-35b-APEX-I-Compact.gguf \
  -ngl 99 \
  -c 32768 \
  --flash-attn on \
  --temp 0.6 \
  --top-p 0.95

With self-speculative decoding (MTP variants)

bash
llama-server \
  -m ornith-1.0-35b-APEX-I-Compact-MTP.gguf \
  --spec-type draft-mtp \
  -ngl 99 \
  -c 32768 \
  --flash-attn on

llama.cpp server with vision

Ornith has a built-in vision encoder. Vision support in GGUF format is experimental — if a compatible mmproj becomes available, pass it with --mmproj.

Hardware Notes

ProfileMinimum VRAMRecommended VRAM
I-Mini16 GB24 GB
Compact / I-Compact20 GB24 GB
Quality / I-Quality24 GB32 GB
Balanced / I-Balanced24 GB (tight)32 GB+

Acknowledgements