Views
No views yet
deepreinforce-ai/Ornith-1.0-35B at upstream revision 5df2ed3f675c7beaa490328cc70bb573b65fb660, converted from the BF16 safetensors with mlx_vlm convert (mlx-vlm 0.6.3) after a BF16 expert-fusing pass (pipelines.moe_expert_fuse, majek repo — upstream ships unfused per-expert MoE tensors). ~19.0 GiB on disk.Runtime status (verified 2026-07-04): loads and generates under mlx-vlm 0.6.3 (vision probe passed on this exact payload) and under mlx-lm 0.31.3 for text-only use (text probe passed). Republished 2026-07-04 in the mlx-vlm module layout, replacing the 2026-07-02 pack, which no MLX runtime could load. Output quality beyond the smoke probes is not verified.
| Runtime | Loads? | Notes |
|---|---|---|
| mlx-vlm 0.6.3 | ✅ | vision + text; language tower quantized, vision tower BF16 |
| mlx-lm 0.31.3 | ✅ text-only | its sanitize drops the vision tower at load |
pipelines/vlm_pack_smoke.py / pipelines/lm_pack_smoke.py, majek repo); verdicts in .sisyphus/evidence/lane-a-republish/ and in PROVENANCE.md.1from mlx_vlm import load, generate
2from mlx_vlm.prompt_utils import apply_chat_template
3
4model, processor = load("majentik/Ornith-1.0-35B-MLX-4bit")
5prompt = apply_chat_template(
6 processor, model.config, "Describe this image.", num_images=1
7)
8print(generate(model, processor, prompt, image=["image.jpg"],
9 max_tokens=128).text)1from mlx_lm import load, generate
2
3model, tokenizer = load("majentik/Ornith-1.0-35B-MLX-4bit")
4prompt = tokenizer.apply_chat_template(
5 [{"role": "user", "content": "Explain KV caching in one sentence."}],
6 add_generation_prompt=True, tokenize=False,
7)
8print(generate(model, tokenizer, prompt=prompt, max_tokens=128))1# base = snapshot of deepreinforce-ai/Ornith-1.0-35B @ 5df2ed3f675c7beaa490328cc70bb573b65fb660
2python -m pipelines.moe_expert_fuse --src /tmp/lane-a-republish/ornith-1.0-35b/base --dst /tmp/lane-a-republish/ornith-1.0-35b/fused --report-out /tmp/lane-a-republish/ornith-1.0-35b/fuse-report.json
3python -m mlx_vlm convert --hf-path /tmp/lane-a-republish/ornith-1.0-35b/fused --mlx-path /tmp/lane-a-republish/ornith-1.0-35b/4bit -q --q-bits 4 --q-group-size 64 --q-mode affinemlx_vlm convert quantizes only the language tower by default. This pack stores weights in the mlx-vlm module layout (vision_tower.*, language_model.*) rather than the upstream model.visual.* naming.majentik/Ornith-1.0-35B-MLX-4bit (this repo)deepreinforce-ai/Ornith-1.0-35B @ 5df2ed3f675c7beaa490328cc70bb573b65fb660pipelines.mlx_direct_quantize pack. Full details in PROVENANCE.md in this repo.deepreinforce-ai/Ornith-1.0-35B. All rights in the original model remain with its authors.1MIT License
2
3Copyright (c) deepreinforce-ai
4
5Permission is hereby granted, free of charge, to any person obtaining a copy
6of this software and associated documentation files (the "Software"), to deal
7in the Software without restriction, including without limitation the rights
8to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9copies of the Software, and to permit persons to whom the Software is
10furnished to do so, subject to the following conditions:
11
12The above copyright notice and this permission notice shall be included in all
13copies or substantial portions of the Software.
14
15THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21SOFTWARE.