jrad123777 commited on
Commit
a701fc0
Β·
verified Β·
1 Parent(s): dc307e1

Update format note: working GGUF now available

Browse files
Files changed (1) hide show
  1. README.md +5 -6
README.md CHANGED
@@ -41,11 +41,10 @@ This is the exact artifact our serving stack runs.
41
  - **This repo:** the champion LoRA **fused into the 4-bit base**, in native MLX format (~18 GB). Runs
42
  directly with `mlx_lm` on Apple Silicon β€” no conversion, no dequantization.
43
 
44
- > **Format note (why MLX, not GGUF):** the model was trained and is served in MLX. A llama.cpp GGUF build
45
- > is in progress; `convert_hf_to_gguf` currently mistranslates the MLX tensor layout for this hybrid
46
- > GatedDeltaNet-MoE architecture (the bare-weights numerics are correct β€” verified β€” but the GGUF layer
47
- > ordering is not yet right). Until that is resolved, **this MLX repo is the canonical, verified-working
48
- > release.**
49
 
50
  ## Eval (real `tsc --strict`, frozen 24-task held-out benchmark)
51
  **Raw single-greedy + RAG** β€” honest, same-harness, multi-seed flat mean (never a cherry-picked run).
@@ -97,7 +96,7 @@ first that compiles under `tsc`.
97
  - Single-greedy compile rate is ~⅓–½ of hard tasks; pair with RAG + best-of-N + a `tsc` gate.
98
  - `effect@4.0.0-beta.80` only; later betas may shift APIs.
99
  - Reasoning/thinking is disabled (`enable_thinking=False`) β€” it's a direct code generator.
100
- - MLX format β†’ Apple Silicon. A portable GGUF is in progress (see format note above).
101
 
102
  Supersedes `jrad123777/effect-qwen36-35b-v3-gguf` (an earlier, weaker SFT checkpoint).
103
 
 
41
  - **This repo:** the champion LoRA **fused into the 4-bit base**, in native MLX format (~18 GB). Runs
42
  directly with `mlx_lm` on Apple Silicon β€” no conversion, no dequantization.
43
 
44
+ > **Format note (MLX vs GGUF):** the model was trained and is served in MLX, so this repo is the native,
45
+ > canonical release. A portable **llama.cpp GGUF build is now also available** (Q4_K_M + Q8_0,
46
+ > smoke-verified) at [`jrad123777/effect-qwen36-35b-gguf`](https://huggingface.co/jrad123777/effect-qwen36-35b-gguf)
47
+ > β€” use that for CPU / non-Apple inference.
 
48
 
49
  ## Eval (real `tsc --strict`, frozen 24-task held-out benchmark)
50
  **Raw single-greedy + RAG** β€” honest, same-harness, multi-seed flat mean (never a cherry-picked run).
 
96
  - Single-greedy compile rate is ~⅓–½ of hard tasks; pair with RAG + best-of-N + a `tsc` gate.
97
  - `effect@4.0.0-beta.80` only; later betas may shift APIs.
98
  - Reasoning/thinking is disabled (`enable_thinking=False`) β€” it's a direct code generator.
99
+ - MLX format β†’ Apple Silicon. For CPU / non-Apple, use the portable GGUF (see format note above).
100
 
101
  Supersedes `jrad123777/effect-qwen36-35b-v3-gguf` (an earlier, weaker SFT checkpoint).
102