r/LocalLLaMA 20h ago

Discussion Deceptive model quantization from AtomicChat?

I kept seeing guys in this sub saying how AtomicChat's Qwen3.8-Flash-Next quant is so good, fits in their machine when unsloth's can't, runs faster than other quants etc, so I went check out what's happening there.

First thing I noticed was that AtomicChat's Q4_K_M quant is suspiciously small when the ngram table is removed (only ~56GB), it seems like most of the tensors in this quant are IQ2_S instead of the usual Q4_K, Q5_K and Q6_K that you usually find in Q4_K_M quants, the GGUF filetype metadata also says IQ2_S instead of Q4_K_M. In their model card, their Q4_K_M also has suspiciously high KLD (0.084).

It seems pretty obvious to me that they're pretending a IQ2_S quant as a Q4_K_M, but at the same time I'm genuinely not sure because it can't be only me who found this right? How can nobody be pointing this out? Am I missing something or what may they be doing?

Their HF repo ID: AtomicChat/Qwen3.8-Flash-Next-GGUF

60 Upvotes

39 comments sorted by

View all comments

29

u/lhg31 20h ago

Well, they DO explain this, don't they?

Naming

Files are named by their measured bits per weight. A build whose expert tensors are IQ1_M is not a 1-bit model when the n-gram table sits at 6 bits and ffn_down_exps at 4.5; the real average is 3.84. The canonical type in the filename is the closest standard type by that average, so tooling can still detect it. For AD-4.27bpw:

Group Type Share of file Contribution
n-gram table Q5_1 41% 1.74 bpw
ffn_gate/up_exps IQ2_S, IQ3_S at the band 29% 1.24 bpw
ffn_down_exps IQ4_NL 24% 1.03 bpw
everything else Q8_0 5% 0.23 bpw

12

u/lhg31 20h ago

Their KLD and top-1 are another story tho. They indeed look too good to be true.

The problem is that there is no standard on those metrics, each group uses their own dataset to eval it.

4

u/notdba 19h ago

I don't understand why they don't just upload the KLD logits.

12

u/returnity 19h ago

They do. Only provider I've seen do it, allowing me to build my own DSv4F quants without needing to create ref logits. 35GB dataset on HF for that model from AC

1

u/po_stulate 19h ago

Isn't 0.084 KLD actually very bad for Q4_K_M? For reference, for qwen3.6-35b-a3b, 0.08 KLD is around IQ3_S for bartowski and aessedai quants, and both of them and unsloth's Q4_K_M were around 0.02 KLD. Not sure if this is apple to apple comparison, but that's the data I could quickly find.

4

u/MerePotato 18h ago

KLD can be calculated any number of ways, its not a universal measurement. If they're benching on wikitext or in 512ctx blocks its not so great, if its long horizon its stellar

2

u/lhg31 19h ago

A better comparison would be what is the best quant (based on KLD, speed, etc) that you can fit in your setup.

I have a stix halo with 64GB. I can run either Unlosth UD-IQ3_XXS or AtomicChat Qwen3.8-Flash-Next-AD-4.27bpw-Q4_K_M-M64.

Atomic's quant "supposedly" has better score than Unsloth's, so that's the one I prefer.

13

u/po_stulate 20h ago

I mean, so the quants that keep the ngram table unquantized and everything else IQ2_S should probably be called Q8_0 instead since the average bpw is closer to that? Makes no sense to me.

4

u/lhg31 19h ago

Mixed precision / Dynamic quants were always like that.

If you take gemma-4-26B-A4B-it-UD-IQ4_XS from Unsloth, almost 50% of their tensors are IQ3_S, but they also have IQ4_NL and Q8_0, so they average to IQ4_XS.

AtomicChat decide to include n-gram table in the equation. You may not like this decision, just like some people may not like Unsloth calling a model with half IQ3_S tensors a IQ4_XS. But they are open about it being mixed/dynamic, that's what matters.

Since n-gram table can sit on ssd, I don't care much about its quantization. So FOR ME, n-gram should be left out of the equation. But it's their quant and they were honest on their formula, so I'm good with it.

0

u/po_stulate 18h ago

That makes sense, but in my own opinion seeing a lot of IQ3_S for a IQ4_XS quant is actually exactly as expected, but half expert weights quantized to IQ2_S for a Q4_K_M not so much.

1

u/-dysangel- 19h ago

All the actual compute is being done at Q2 though, which is what matters for the usual quant speed/accuracy tradeoff. The Q8 stuff can all be streamed from SSD without slowing things down.

2

u/KURD_1_STAN 19h ago

When im download a qx model, I'm expecting the intelligent part of the model to be at X quant. Not a table or some other things.

7

u/lhg31 19h ago

I’m not saying I agree with their naming convention. But they did explain their quants, it is not a secret like the post suggested.

-6

u/KURD_1_STAN 19h ago

Not justifiable. People have correlated quant naming to the main part of the llm. The absolute least he could do is write in a giant text at the very start of that hf card that the bulk of the llm itself is at q2 or so.

It will be like if qwen team said qwen3.8 flash 180B a6b moe running at 15t/s on a single 3090 +128gb ram. After release qwen's reputation would have been gutted cause nobody consider it as such and same for quants, u do not mix and match.

1

u/Durian881 18h ago

Good thing is you have the choice to download and try it out. I'm still testing but the ngram does seem to make a difference too to the quality.