Views
No views yet

BF16 source (71 GB): DJLougen/Ornstein3.6-35B-A3B-RYS-SABER | Censored RYS version: DJLougen/Ornstein3.6-35B-A3B-RYS
full_attention_interval = 4 assumption in stock llama.cpp's Qwen3.5 loader. These GGUFs are re-converted with per-layer head_count_kv baked in, and you need a llama.cpp that reads that per-layer metadata instead of falling back to the interval formula.rys-qwen35, one commit on top of ggml-org/llama.cpp@d00685831, fully backward-compatible).check_tensor_dims error on blk.11 — this is expected until/unless the patch is upstreamed.chat_template.jinja<think>...</think> tags. If you see raw <think>thinking text</think> blocks appearing inline in every response from llama-server (or any OpenAI-compatible client), you need to apply the Qwen3 thinking chat template that ships in this repo.1llama-server \
2 -m Ornstein3.6-35B-A3B-RYS-SABER-Q4_K_M.gguf \
3 --jinja \
4 --chat-template-file chat_template.jinja \
5 -ngl 99 -c 8192--jinja enables jinja chat-template parsing.--chat-template-file chat_template.jinja overrides the template embedded in the GGUF with the correct Qwen3-Thinking one from this repo.--reasoning-format to deepseek, which splits <think>...</think> out of the content field into a separate reasoning_content field on the OpenAI-compatible response — so just --jinja --chat-template-file is enough. If you're on an older build and still see raw <think> blocks in content, add --reasoning-format deepseek explicitly.| File | Quant | Size | Notes |
|---|---|---|---|
Ornstein3.6-35B-A3B-RYS-SABER-Q8_0.gguf | Q8_0 | ~38 GB | Near-lossless, largest |
Ornstein3.6-35B-A3B-RYS-SABER-Q6_K.gguf | Q6_K | ~29 GB | Very high quality |
Ornstein3.6-35B-A3B-RYS-SABER-Q5_K_M.gguf | Q5_K_M | ~25 GB | Strong quality/size balance |
Ornstein3.6-35B-A3B-RYS-SABER-Q4_K_M.gguf | Q4_K_M | ~21 GB | Recommended default |
Ornstein3.6-35B-A3B-RYS-SABER-Q3_K_M.gguf | Q3_K_M | ~17 GB | Low-memory option |
Qwen 3.6 35B-A3B → Ornstein3.6 (DDM fine-tune) → RYS (layer 10 dup, +49%) → SABER (refusal ablated)head_count_kv array encoding the RYS-shifted attention pattern1git clone https://github.com/DJLougen/llama.cpp.git
2cd llama.cpp
3cmake -B build -DGGML_CUDA=ON -DCMAKE_BUILD_TYPE=Release
4cmake --build build -j-DGGML_CUDA=ON for a CPU-only build. The patch touches the GGUF loader and three model forward files; backend selection is independent.1hf download DJLougen/Ornstein3.6-35B-A3B-RYS-SABER-GGUF \
2 Ornstein3.6-35B-A3B-RYS-SABER-Q4_K_M.gguf \
3 --local-dir .
4
5./build/bin/llama-cli \
6 -m Ornstein3.6-35B-A3B-RYS-SABER-Q4_K_M.gguf \
7 -p "Your prompt here" \
8 -ngl 99 -c 8192