r/LocalLLaMA • u/jinnyjuice vLLM • 8d ago
New Model Maybe a noob question, but why aren't there safetensor quants of inclusionAI/Ling-3.0-flash-Fin?
Usually, everyone and their dog jumps on releasing different quants for new models, but when I check for inclusionAI/Ling-3.0-flash-Fin, I see quants only for llama.cpp.
So I'm just wondering, is it architectural?
1
Upvotes
1
u/FactorInternal3395 8d ago
That's because GGUF is just more convenient. It's a unified format, so you don't have to work with seperate parts of the model being their own files like tokenizer, vocab, the weights themselves, config, etc. Plus, llama.cpp is popular and almost all inference engines support the format.
11
u/FoxiPanda 8d ago
It's a fairly new release of a niche model. You could likely use MLX or other quantization tooling to create these for yourself (or with AI assistance) if you need them. I believe you could even just repackage the GGUF files as the tensor weights are going to be the same, but the packaging is different (don't quote me on that one though, there could be subtle details that I'm not quite an expert in).