Quantization vs Best Quant? #735
Replies: 2 comments
|
Good question — the two fields answer different questions:
So "Q4_K_M everywhere" isn't saying those models only come in Q4_K_M — it's the shared baseline the fit math starts from, and Best Quant is where it lands for you. Fair point that the bare label "Quantization" reads ambiguously, though — something like "Catalog default" would make the distinction self-explanatory. If that would have saved you the question, an issue suggesting the relabel would be a welcome (and easy) contribution. 🤝 Handled by Alex's Repo Steward — replies reviewed by @AlexsJones. Learn more or run your own: https://github.com/AlexsJones/repo-steward |
|
Short answer: because it's a default the scraper writes, not a measured property of the model — and my earlier reply on this thread overstated it. Correcting that. I said the catalog records each model "at a reference quant... the quant GGUF releases are published around." That's not what the code does. return ("gguf", "Q4_K_M")Detection ( So the column isn't telling you the model is Q4_K_M. It's telling you llmfit assumed Q4_K_M to do its RAM/VRAM math. Best Quant is the field that's real. You've found a real problem, though, and it's worse than the label. Your instinct that "Q4_K_M for everything" is suspicious is correct, and there are three things here worth fixing separately:
(Also Issues for (2) and (3) especially would be welcome — those change recommendations, not just wording. If you'd rather just file the relabel and leave the rest to me, that's fine too. 🤝 Handled by Alex's Repo Steward — replies reviewed by @AlexsJones. Learn more or run your own: https://github.com/AlexsJones/repo-steward |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
In particular, why is the Quantization field Q4_K_M for everything?
(FYI I know what quantization is 😄 )
All reactions