AI & ML interests

Conversational Language Models, Image Generation and Automation using AI

artificial-citizenย 
posted an update 27 days ago
view post
Post
873
New 27b fine tune that reduces the overthinking seen in the Qwen series. Matching or improving on the base models performance within noise.

More evals and quants on the way.

protoLabsAI/ThinkingCap-Qwen3.6-27B-MTP-GGUF
artificial-citizenย 
posted an update about 1 month ago
view post
Post
101
A 9B running 306 tok/s on a single GPU.

We shipped calibrated NVFP4 + MTP builds of Ornith-1.0-9B, and found something along the way: NVFP4 and speculative decoding are multiplicative on Blackwell. MTP's verify step batches compute straight into the FP4 tensor cores โ€” +52% lift vs +17% on Q4_K_M, acceptance-controlled so it's the kernels, not the draft head.

- GGUF (6.6 GB, MTP baked in): 306 tok/s on RTX PRO 6000 โ€” faster than our 4B record
- vLLM (10.4 GB, W4A4 + MTP sidecar): ~1.5ร— bf16+MTP at 55% the VRAM
- Full release gate vs bf16 on the card: FC 96% (beats base), claw โˆ’0.028, coherence verified to 60K
- On Ampere? Honestly: use Q4_K_M. The FP4 win is Blackwell's tensor cores.

Every number traces to a row in protoLabsAI/lab-benchmarks (CC-BY-4.0).

๐Ÿ”— huggingface.co/protoLabsAI/Ornith-1.0-9B-NVFP4
๐Ÿ”— huggingface.co/protoLabsAI/Ornith-1.0-9B-MTP-GGUF

Want a different size/format? Open a discussion โ€” we usually ship within 48h.
  • 3 replies
ยท
artificial-citizenย 
posted an update about 1 month ago
view post
Post
117
Built OpenRouter's Fusion on our own LiteLLM gateway, then benchmarked whether it earned its cost.

The detail that decides the design: in OpenRouter's own numbers, fusing a model with itself still gained ~6.7 points. So the engine is the judge synthesizing over diverse samples, not the mix of models. Self-MoA ("Rethinking Mixture-of-Agents", arXiv 2502.00674) backs it โ€” aggregating samples from one strong model beats mixing in weaker ones, which usually dilutes quality.

That maps cleanly onto local inference. A multi-model panel means holding N models resident, a non-starter on one shared card. Judged self-consistency needs only one, and ours already runs as two load-balanced replicas, so the samples spread across both GPUs for free.

~360-line CustomLLM provider, every sub-call looped back through the gateway so it keeps routing, fallbacks, and cost tracking, and a 29-prompt blind-ranked benchmark with an explicit ship rule. All MIT.

Breakdown: https://protolabs.studio/blog/fusion-on-your-own-litellm-gateway
Code: https://github.com/protoLabsAI/fusion-gateway