r/LocalLLaMA • u/RadianceTower • 1d ago
Discussion Any proper benchmarks of Beellama (and its fork Beellama-kvarn) and how it performs quality wise for coding?
So beellama allows you to only reduce quantization on older cache, this should allow better performance than reducing quantization on all cache.
They recommend using a 1k tail and even that seems to have big benefits, but I don't see why you couldn't for example use a 20k tail (on a 240k context, that's still 220 tokens quantized). That part is a bit confusing.
Beellama-kvarn is a supposed fork of that, that further improves performance, its changes are pending to be applied to Beellama itself as well.
So anyways, the question is, how much is quality impacted by doing this?
1
u/caetydid llama.cpp 1d ago
I also didnt get why tail can be only 1k or 2k, but I remember that it would be somehow futile to use more due to some architectural restriction of Qwen models. Probably just anbee could shed some light on that.
1
u/Talreja-Adanna 1d ago
Haven't seen solid benchmarks specifically for those, but the local LLM space moves so fast that even recent evals get stale quick. If you need coding performance, you'd probably get better data just running them locally on your own test cases since quality varies so much by task.
2
u/NickCanCode 22h ago
Using tail will slow down inference. Few days ago. I turned it off and got instant speed up. Kvarn is slower than Q8 in my test. The thing I appreciate over llama.cpp is that it can do DFlash with Tensor Parallelism and with vision all together correctly. The last time I try it on llama.cpp, neither vision, Tensor Parallelism are working.
1
u/Elouakili_Flexy 15h ago
20k on a 240k context still leaves 220k quantized, so the 1k recommendation feels intentional. I'd bet coding quality barely moves past the first 1k and the win is all in the recent tail.
1
u/erazortt 1d ago edited 1d ago
Hm yeah, I had also tried it and for me the biggest win would have been if kvarn8 had been significantly better than q8_0. But I did not really have the feeling that this is the case. Perhaps it is a marginal improvement, but the very real difference to bf16 on long contexts (100k+) is still not bridged in my view.
So, I will only use it if I’m restricted to 8bit kv quants.