Views
No views yet
⚠️ DEPRECATED — Recommended: leonsarmiento/Ornith-1.0-35B-5bit-XL-mlxThis model has been superseded by the BaseQuant_XL variant, which keeps routing-critical layers (MoE router gate, shared expert, lm_head) in full bf16 precision for improved quality. Benchmark comparisons are available in the XL model card.
deepreinforce-ai/Ornith-1.0-35B using mixed 5/8-bit quantization optimized for Apple Silicon. The vision encoder is preserved and quantized at 5-bit, making this a full multimodal model.| Benchmark | Ornith-1.0-35B | Qwen3.5-35B | Qwen3.6-35B |
|---|---|---|---|
| Terminal-Bench 2.1 (Terminus-2) | 64.2 | 41.4 | 52.5 |
| Terminal-Bench 2.1 (Claude Code) | 62.8 | 38.9 | 49.2 |
| SWE-bench Verified | 75.6 | 70 | 73.4 |
| SWE-bench Pro | 50.4 | 44.6 | 49.5 |
| SWE-bench Multilingual | 69.3 | 60.3 | 67.2 |
| NL2Repo | 34.6 | 20.5 | 29.4 |
| Claw-eval Avg | 69.8 | 65.4 | 68.7 |
pip install -U mlx-vlmpython -m mlx_vlm.generate --model leonsarmiento/Ornith-1.0-35B-5bit-mlx --max-tokens 256 --temperature 1.0 --top-p 1.0 --prompt "Hello"| Bit Depth | Layers | Rationale |
|---|---|---|
| 8-bit | embed_tokens, lm_head, router gate, shared_expert_gate, shared_expert, self_attn (full attention), linear_attn (DeltaNet) | Every token passes through these — routing accuracy, shared representation, and sequence modeling are non-negotiable |
| 5-bit | vision_tower, switch_mlp (routed experts) | Bulk of parameters, only 8 of 256 experts active per token — natural redundancy tolerates lower precision |
| Layer | Bits | Group Size |
|---|---|---|
embed_tokens | 8 | 64 |
lm_head | 8 | 64 |
mlp.gate (router) | 8 | 64 |
sharedExpertGate | 8 | 64 |
sharedExpert | 8 | 64 |
self_attn (full attention) | 8 | 64 |
linear_attn (DeltaNet) | 8 | 64 |
vision_tower | 5 | 64 |
switch_mlp (routed experts) | 5 | 64 |
| Default fallback | 8 | 64 |
quant_predicate via mlx_vlm| Parameter | Value |
|---|---|
temperature | 1.0 |
top_p | 1.0 |
top_k | 40 |
min_p | 0.01 |
repeat_penalty | 1.0 |
Note: Ornith-1.0-35B uses Temp 1.0 and Top_p 1.0 per the model's Terminal-Bench 2.1 benchmark recipe. This is a Qwen3.5-based model —preserve_thinkingis not applicable.