pipenetwork commited on
Commit
fcc2061
·
verified ·
1 Parent(s): a534b27

Correct norm-comparison wording; link conversion tooling

Browse files
Files changed (1) hide show
  1. README.md +7 -3
README.md CHANGED
@@ -39,7 +39,7 @@ We verified the identity numerically rather than assuming it:
39
  | Check | Result |
40
  |---|---|
41
  | `lm_head.weight` (BF16 in both) vs GGUF `output.weight` | **bit-exact**, 0 mismatches across 262,144 values |
42
- | RMSNorm weights (`input_layernorm`, `q_norm`, `post_attention_layernorm`, final `norm`) | **bit-exact** under llama.cpp's `w w + 1` storage convention |
43
  | `embed_tokens` vs GGUF Q8_0 `token_embd` | cosine 0.999956 — consistent with a plain Q8_0 round-trip |
44
 
45
  So these MLX quants are made from the original bf16 weights, **not** by dequantizing a GGUF. There is no GGUF round-trip loss.
@@ -99,8 +99,8 @@ print(generate(model, processor, prompt, ["your_image.jpg"], max_tokens=512, ver
99
  | Repo | Bits | Size |
100
  |---|---|---|
101
  | [...-MLX-4bit](https://huggingface.co/pipenetwork/Qwen3.5-9B-The-Defiant-Fable-Uncensored-Heretic-MLX-4bit) | 4 | 6.0 GB |
102
- | [...-MLX-6bit](https://huggingface.co/pipenetwork/Qwen3.5-9B-The-Defiant-Fable-Uncensored-Heretic-MLX-6bit) | 6 | 8.2 GB |
103
- | [...-MLX-8bit](https://huggingface.co/pipenetwork/Qwen3.5-9B-The-Defiant-Fable-Uncensored-Heretic-MLX-8bit) | 8 | 10.4 GB |
104
  | [...-MLX-bf16](https://huggingface.co/pipenetwork/Qwen3.5-9B-The-Defiant-Fable-Uncensored-Heretic-MLX-bf16) | 16 | 18.8 GB |
105
 
106
  Group size 64, `affine` mode. The vision tower is left unquantized (mlx-vlm's default for multimodal projector/patch-embed modules), so the size delta between tiers comes from the language model.
@@ -129,6 +129,10 @@ mxfp8 0.571, 0.719, 0.895, 0.683, 0.426, 0.770, 0.671
129
 
130
  These are not measurements of these MLX repos — treat them as characterising the weights, not this quantization.
131
 
 
 
 
 
132
  ## License
133
 
134
  Apache 2.0, inherited from Qwen3.5-9B.
 
39
  | Check | Result |
40
  |---|---|
41
  | `lm_head.weight` (BF16 in both) vs GGUF `output.weight` | **bit-exact**, 0 mismatches across 262,144 values |
42
+ | RMSNorm weights (`input_layernorm`, `q_norm`, `post_attention_layernorm`, final `norm`) | equal `source + 1.0` under llama.cpp's shift convention (12542/12544 elements exact; 2 differ by 1 ULP from the float32 addition) |
43
  | `embed_tokens` vs GGUF Q8_0 `token_embd` | cosine 0.999956 — consistent with a plain Q8_0 round-trip |
44
 
45
  So these MLX quants are made from the original bf16 weights, **not** by dequantizing a GGUF. There is no GGUF round-trip loss.
 
99
  | Repo | Bits | Size |
100
  |---|---|---|
101
  | [...-MLX-4bit](https://huggingface.co/pipenetwork/Qwen3.5-9B-The-Defiant-Fable-Uncensored-Heretic-MLX-4bit) | 4 | 6.0 GB |
102
+ | [...-MLX-6bit](https://huggingface.co/pipenetwork/Qwen3.5-9B-The-Defiant-Fable-Uncensored-Heretic-MLX-6bit) | 6 | 7.7 GB |
103
+ | [...-MLX-8bit](https://huggingface.co/pipenetwork/Qwen3.5-9B-The-Defiant-Fable-Uncensored-Heretic-MLX-8bit) | 8 | 9.7 GB |
104
  | [...-MLX-bf16](https://huggingface.co/pipenetwork/Qwen3.5-9B-The-Defiant-Fable-Uncensored-Heretic-MLX-bf16) | 16 | 18.8 GB |
105
 
106
  Group size 64, `affine` mode. The vision tower is left unquantized (mlx-vlm's default for multimodal projector/patch-embed modules), so the size delta between tiers comes from the language model.
 
129
 
130
  These are not measurements of these MLX repos — treat them as characterising the weights, not this quantization.
131
 
132
+ ## Conversion tooling
133
+
134
+ Scripts and the provenance proof: [github.com/PipeNetwork/defiant-fable-mlx](https://github.com/PipeNetwork/defiant-fable-mlx)
135
+
136
  ## License
137
 
138
  Apache 2.0, inherited from Qwen3.5-9B.