Views
No views yet
⚠️ Preliminary release. Quantized from the safetensors output of the Heretic optimization run; the only validation performed so far is (a) Heretic's own first-token KL + refusal-marker eval against its 100-prompt evaluation split, and (b) a five-prompt qualitative chat spot-check. No academic benchmarks (MMLU, GSM8K, IFEval, HumanEval), agentic-harness benchmarks, or formal capability comparisons against the source REAM-192 base have been run yet. Treat this release as a preview while those evaluations are pending. The model card will be updated with hard numbers as they land.
| Check | Result | Source |
|---|---|---|
| Heretic eval-set refusals (out of 100 harmful prompts) | ✅ 10 / 100 (vs ~80 / 100 baseline) | Heretic optimization run, trial 67 |
| First-token KL divergence (harmless eval prompts) | 0.0008 | Heretic optimization run, trial 67 |
| Qualitative chat spot-check | Passed on the hardest of 5 refusal-trigger prompts (Instagram cookie-hijacking scrape) — substantive technical answer with intact thinking-mode reasoning, no soft-refusal lecture-stacking | Manual probe of the saved bf16 model |
| File | Size | BPW | Notes |
|---|---|---|---|
Qwen3.6-35B-A3B-REAM-192-heretic-Q4_K_M.gguf | 16 GB | 4.85 | Recommended daily driver. Good balance of quality and footprint; fits comfortably on 24 GB VRAM with usable context. |
Qwen3.6-35B-A3B-REAM-192-heretic-Q3_K_S.gguf | 11 GB | 3.52 | Smaller fallback. Fits on 16 GB VRAM. Some quality loss vs Q4_K_M but still very usable. |
Qwen3.6-35B-A3B-REAM-192-heretic-bf16.gguf | 51 GB | 16.01 | Full-precision GGUF, intermediate. Useful as a master from which to derive new quant levels (Q5_K_M, IQ3_M, IQ4_XS, etc) without re-running convert_hf_to_gguf.py. |
mmproj-REAM-192-heretic-F16.gguf | ~2-3 GB | — | Vision tower sidecar for llama-mtmd-cli / llama-server multimodal mode. Vision capabilities preserved from the source Qwen3.6-VL base — Heretic only touches the language model. |
attn.o_proj and attn.out_proj, and auxiliary-safetensors preservation on save.FULL (Magnitude-Preserving Orthogonal Ablation).| Parameter | Value |
|---|---|
| direction_index | 17.12 |
| attn.o_proj.max_weight | 1.49 |
| attn.o_proj.max_weight_position | 29.14 |
| attn.o_proj.min_weight | 0.77 |
| attn.o_proj.min_weight_distance | 5.21 |
| attn.out_proj.max_weight | 0.95 |
| attn.out_proj.max_weight_position | 26.92 |
| attn.out_proj.min_weight | 0.78 |
| attn.out_proj.min_weight_distance | 22.12 |
| mlp.down_proj.max_weight | 1.50 |
| mlp.down_proj.max_weight_position | 26.81 |
| mlp.down_proj.min_weight | 1.11 |
| mlp.down_proj.min_weight_distance | 22.33 |
1./llama-cli \
2 -m Qwen3.6-35B-A3B-REAM-192-heretic-Q4_K_M.gguf \
3 -p "Write a Python function that returns the nth Fibonacci number." \
4 -n 200 --temp 0.0 --n-gpu-layers 999