Good to know, I suppose it’s the best open weight model, because of its enormous size, so I would also want to know what is second best or by size class. And how slow Kimi K3 needs to be:
For Kimi K3 from sqlite.ai, a token generated every other second (vs “AirLLM running K3 at ~5 minutes per token”) and 10.65 tokens per second for Kimi-Linear model:
recommends 64 GB plus a fast internal SSD. WASTE’s efficiency documentation reports 0.45 to 0.62 tokens per second on a 64 GB M5 Pro. WASTE uses 3-bit residual vector quantization for experts, keeps more sensitive shared weights at 4 or 8 bits, and uses router lookahead to begin reads before the next layer needs them. At 4K context, K3’s compressed KV cache is about 0.21 GB.
.. The documentation also measures Kimi-Linear 48B at 10.65 tokens per second in a 19 GB container with a 1.28 GB minimum. K3 remains the main and best-tested target. .. Conversion takes about 4.7 hours with three workers and needs another 1.42 TB of temporary space.
Another option slightly slower (is it meant for lesser hardware?): GitHub - gavamedia/deltafin: Run full Kimi K3 on a single device. And an OpenAI-compatible API server for local chat and coding agents. · GitHub
This one seemed interesting: Maple-Preview, an AI that runs on iPhones and boasts performance equivalent to Bonsai 27B while being 13 times faster, represents another step forward for local AI. - GIGAZINE
13 times faster than Bonsai 27B [quantized Qwen], which also runs on an iPhone. .. Maple-Preview was reportedly able to accurately solve problems from the International Mathematical Olympiad. [at 281.5 tokens/s on Macbook Pro (M5 Pro)] Maple-Preview consumes only 7.69GB of memory even when handling 131,000 tokens.
I do have only 2 GB VRAM not sure I’m even using the GPU and currently only 32 GB of my 128 GB regular RAM installed, i.e. only one DIMM, would have more channels bandwidth otherwise; 16 cores (hyperthreaded I guess), I changed default from --threads 16 shown in the (modified) llama.cpp github to half the threads, and got more speed, I was happy before:
$ ./build/bin/llama-completion -m models/maple-preview-TQ2_0-head-Q4_K.gguf --threads 8 --temp 1.0 --top-p 0.95 --jinja --conversation
..
0.32.477.396 I common_perf_print: prompt eval time = 268,39 ms / 24 tokens ( 11,18 ms per token, 89,42 tokens per second)
0.32.477.404 I common_perf_print: eval time = 18496,73 ms / 428 runs ( 43,22 ms per token, 23,14 tokens per second)
I tested it with my standard question “What is the Julia language, and can you show me example code?” [first] at:
Neither that model nor MiniMax claim to support coding, maybe they do and I would like to know if good for:
The model fine-tunes Qwen2.5-Coder-14B for Rust-specific programming tasks using a 191K-example synthetic dataset built via multi-model generation and peer-reviewed validation.
I suppose we could do similar for any of [those] models if needed.