Join the conversation

Join the community of Machine Learners and AI enthusiasts.

Sign Up

All HF Hub posts

SeaWolf-AIΒ 
posted an update 1 day ago
view post
Post
4525
πŸ”΅ VKUE β€” No GPU? Runs anyway.

"Frontier models need a datacenter GPU" rests on a hidden assumption: that the model reads ALL its parameters every token. Decode is memory-bandwidth bound β€” sweep 34B params/token and an 8 GB card dies at 1–2 tok/s.

So we ran ONE 34.7B reasoning model β€” Ourbox-35B-JGOS, a sparse Mixture-of-Experts β€” as the identical weights across the whole hardware spectrum. All measured:

β€’ B200: 18,057 tok/s (aggregate)
β€’ 1Γ— A10G: 126 tok/s
β€’ 8 GB laptop (RTX 5060): 20 tok/s
β€’ GPU-less CPU: 17 tok/s

Why it works: Ourbox holds 34.7B params but only ~3B are active per token (256 experts, top-8). Since decode is bandwidth-bound, a dense 34B moves ~16.7 GB/token while Ourbox moves ~1.45 GB β€” ~11Γ— less traffic. Put the experts in system RAM, keep attention/router/shared on the GPU, and a 34.7B reasoner runs on an 8 GB laptop β€” or no GPU at all.

Sparsity alone, proven (same laptop, same quant, ~same footprint): Ourbox-35B (A3B) 20.01 tok/s vs Qwen2.5-32B (dense) 5.36 β†’ 3.7Γ— from sparsity alone, ~2Γ— the best dense-32B on any 8 GB machine. Not a toy: GPQA Diamond 86.4% (maj@8).

Try it live (same prompt, GPU vs GPU-less CPU, live tok/s). Honest scope: one machine's measurements; the CPU path proves it RUNS without a GPU, not that it beats one.

πŸ“ Article: https://huggingface.co/blog/FINAL-Bench/vkue
πŸ”΅ GPU vs CPU demo: https://final-bench-ourbox-35b-vkue-demo.hf.space/
πŸ”΅ CPU-only demo: https://final-bench-ourbox-35b-vkue-cpu.hf.space
πŸ“Š VKUE leaderboard: FINAL-Bench/VKUE
πŸ€— Model: FINAL-Bench/Ourbox-35B-JGOS-GGUF
⚑ VKAE (speed): VIDraft/vkae

VKUE is the "runs anywhere" side of our serving line; VKAE the "fast on datacenter GPUs" side. VKAE is fast; VKUE is everywhere.
  • 2 replies
Β·
Quazim0t0Β 
posted an update about 21 hours ago
view post
Post
2109
🌼 DaisyChain-Web: train a language model with friends or by yourself with multiple devices, in the browser, no install

Open a webpage, share a room link, and every device that joins becomes part of the training cluster. Phones, laptops, old PCs: they connect peer-to-peer over WebRTC and train one shared transformer together, entirely in the browser.

What's actually happening under the hood:

🧠 A mini transformer LM trains on FineWeb-Edu, streamed live from the HuggingFace Hub. Each device pulls its own slice (data parallelism), tokenized with our 16.5k-token Spikewhale tokenizer
⚑ Every single multiply runs through verified INT8 neural units, no float fallback. On WebGPU browsers it uses the GPU's DP4A integer dot-product hardware, admitted only after proving bit-identical results against the verified units, with a 3Γ—INT8 fast-accurate scheme (CUTLASS's 3xTF32 trick, ported to 8-bit)
πŸ”’ Devices average gradients every step under a sync guard: a per-step roster protocol plus weight-hash verification keeps every device's model bit-identical. If anything drifts, training stops instead of silently forking
πŸ“Š Live logs show exactly what every device contributes, step by step
πŸ’Ύ When you're done: test generations right on the page, download a checkpoint, or grab the inference kit, a single self-contained HTML file with the weights baked in that runs generations offline, anywhere
Works solo too. Every extra device just grows the effective batch.

πŸ‘‰ Try it: Quazim0t0/DaisyChain-Web
πŸ›  Training framework: DaisyChainAI/DaisyChain-Train

Proof of concept: only train with devices you trust. Feedback welcome!
Quazim0t0Β 
posted an update 2 days ago
view post
Post
3972
I never really posted about my DaisyChain project because it's still work in progress. I decided to post a small bit about it and the demo.
DaisyChain Genomics: four small DNA/RNA specialists chained behind a learned router that behave like one big genomics model, at ~7Γ— less active compute.
I built a modular genomics model chasing a 500M-parameter foundation model, then caught myself measuring it wrong. Here's the honest version.
DaisyChain is a different bet: instead of one monolithic DNA model, it's four ~74M specialists (eukaryote, prokaryote, mRNA, splice) chained behind a learned router, each distilled per-domain from HuggingFaceBio's Carbon-500M. Every specialist reports how surprised it is (bits/base) and the router hands each sequence to the link most at home with it. In lineage it's a cluster Branch-Train-Merge mixture of experts, so you can chain on a new domain without retraining the others.
The pitch: ~295M total params (under Carbon-500M), but only one ~74M specialist runs per query, so ~7Γ— cheaper per token, routing at 100% held-out.
The mistake: Carbon works in 6-mers, and I'd been scoring likelihood as 6-mer cross-entropy. By that number I was +0.043 bits/base behind, splice even "beating" Carbon. But Carbon scores at the base-pair level, which is harder and more honest. Re-run their way:
Real gap: 1.862 vs 1.787 bits/base, +0.089 behind, not +0.043
No domain actually beats Carbon; the "splice win" was an artifact
Seq recovery: euk 31.5% vs 38.9%, bacteria 40.9% vs 54.1%

DaisyChain is still behind Carbon-500M (itself a draft model, not built to top benchmarks), but by a number I can defend, and the gap closes with every per-domain pass. 🌼

DaisyChainAI

DaisyChainAI/Daisychain-Genomics-Demo
DaisyChainAI/daisychain-genomics
ReubencfΒ 
posted an update 3 days ago
view post
Post
863
GPT 5.6 SOL builds hugging city a multiplayer online game hosted at Reubencf/Hugging-city
  • 2 replies
Β·
s3nhΒ 
posted an update 3 days ago
view post
Post
153
Uncensoring Mistral,

give it a try
s3nh/Ministral-3-14B-Instruct-2512-BF16-abliterated
danielhanchenΒ 
posted an update 3 days ago
ProCreationsΒ 
posted an update 4 days ago
view post
Post
457
I won 4th place on the huggingface hackathon, genuinely so happy. Congrats to everyone that won, this has been super fun
MiniMax-AIΒ 
posted an update 4 days ago
view post
Post
4509
Huge news from MiniMax: we’ve secured a $2B funding round, paired with a formal long-term commitment from our CEO IO to allocate 1% of total company equity from his personal holdings to support the global open-source AI community over the next four years.

This capital backs our continuous open model releases, community tooling and transparent frontier AI research. We’re just getting started on our open-source roadmap toward accessible AGI.

If you build with open foundation models and want to push frontier AI together, come join us.
Intelligence with Everyone. πŸš€

MiniMaxAI
  • 3 replies
Β·
Banaxi-TechΒ 
posted an update 5 days ago
view post
Post
164
We're excited to release BananaMind 2 Mini the first model in our BananaMind 2 series!


BananaMind 2 Mini features a custom digit-aware BPE tokenizer that keeps every digit isolated, fixing the core arithmetic weakness of our previous models. It's trained on 30B tokens from FineWeb-Edu, DCLM, Cosmopedia-v2 and FineMath-4+, and already outperforms Pythia-31M despite having fewer parameters.
Check it out at
BananaMind/BananaMind-2-Mini

BananaMind 2 Pro is coming next. Apache 2.0.
  • 1 reply
Β·
evalstateΒ 
posted an update 3 days ago
view post
Post
1168
Hugging Face MCP Server v0.3.29
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Included "papers" in the new hf_fs tool. Includes listing of trending/daily.

This is a new tool under observation - disable the "Paper Semantic Search" tool for best results.

hf://papers/
β”œβ”€β”€ README.md
β”œβ”€β”€ daily/
β”‚   β”œβ”€β”€ latest
β”‚   └── YYYY/
β”‚       └── MM/
β”‚           └── DD/
β”œβ”€β”€ trending/
└── ARXIV_ID/
    β”œβ”€β”€ metadata.json
    β”œβ”€β”€ paper.md
    β”œβ”€β”€ models/
    β”œβ”€β”€ datasets/
    └── spaces/