惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
B
Blog
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Jina AI
Jina AI
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
L
LangChain Blog
M
MIT News - Artificial intelligence
Blog — PlanetScale
Blog — PlanetScale
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
F
Fortinet All Blogs
H
Help Net Security
B
Blog RSS Feed
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
1.6 Trillion Parameters Just Went Open Source. What About...
Mininglamp · 2026-04-28 · via DEV Community

On April 27, DeepSeek released its V4 model family and open-sourced the weights. The flagship V4-Pro Base has 1.6 trillion parameters (862B active), while V4-Flash comes in at 158B (Base 292B). Both use a Mixture of Experts (MoE) architecture. Within 48 hours of landing on HuggingFace, V4-Pro had already racked up 3,000+ likes and 174K downloads.

It's an impressive milestone for open-source AI. But it also crystallizes a question that's been brewing for a while: Is "bigger" the only direction AI models can go?

The case for Scaling Up

Let's be clear — Scaling Up works, and DeepSeek V4 is the latest proof.

The logic behind bigger models traces back to the Scaling Laws paper (Kaplan et al., 2020): model performance scales predictably with parameter count, dataset size, and compute. From GPT-3 (175B) to DeepSeek V3 to V4 (1.6T), each generation has pushed the ceiling higher on general reasoning, code generation, and mathematical problem-solving.

The engineering has matured too. MoE architecture is key — V4-Pro's 1.6T total parameters don't all activate at once. A routing mechanism selects which expert networks fire for each input, keeping per-inference compute manageable while retaining the knowledge capacity of a massive model. Combined with distributed inference, mixed precision, and optimized serving stacks (V4-Pro is already available on Together, Novita, Fireworks, and others), trillion-parameter models are becoming practically accessible.

None of this is hype. The results are real. For general-purpose tasks — open-ended reasoning, multilingual generation, complex code synthesis — larger models consistently outperform smaller ones.

But not every problem needs a trillion parameters

Here's where the story gets more interesting.

Running V4-Pro requires a multi-GPU cluster. Even using it through an inference API costs money per call. For high-frequency use cases — real-time interaction, continuous agent workflows, batch processing — that cost adds up fast. And for individual developers or small teams, the economics don't always work.

There are also structural constraints:

  • Data privacy. Cloud inference means your input data leaves your machine. For AI agent scenarios where the model needs to see your entire screen — emails, chat messages, bank statements — that's a non-trivial compliance issue.
  • Latency. Network round trips add delay. For agent workflows involving dozens of sequential steps (screenshot → understand → act → repeat), every millisecond of latency compounds.
  • Availability. No internet, no AI. But real-world use cases on airplanes, in secure facilities, or on unstable connections require AI that works offline.

These aren't criticisms of Scaling Up. They're boundary conditions that define where a different approach makes more sense.

The other direction: Scaling Out

If Scaling Up means making one model as large as possible, Scaling Out means distributing multiple smaller, specialized AI models closer to where they're actually needed — and having them collaborate.

This isn't a theoretical alternative. Several converging technical trends make it practical:

Model compression is real

Techniques like mixed-precision quantization (e.g., w4a16), visual token pruning, and knowledge distillation can shrink billion-parameter models to run on consumer hardware. On an Apple M4 chip, a 4B-parameter quantized model achieves 476 tokens/s prefill and 76 tokens/s decode, with a peak memory footprint of just 4.3GB.

Specialized models can beat general ones — in their domain

A general-purpose trillion-parameter model spreads its capacity across every conceivable task. A specialized model focuses all its parameters on one domain. In GUI automation specifically, a 4B-parameter model trained for this task has achieved #1 scores on domain benchmarks, outperforming models hundreds of times its size on the same tests.

Data sovereignty matters

When the model runs on the user's device, the data never leaves. No cloud upload, no network transmission, no third-party processing. For enterprise compliance, personal privacy, and regulated industries, this is a structural advantage that cloud-only models can't match.

Multi-agent collaboration

Instead of one giant model doing everything, multiple specialized agents can divide work — each running on different devices or nodes, communicating through standardized protocols. This architecture naturally fits the Scaling Out paradigm.

A concrete example: GUI agents on the edge

Let's make this concrete with a specific domain: GUI automation.

The task is straightforward in concept but demanding in practice: an AI agent looks at a screen, understands the interface elements, and performs operations — clicking buttons, filling forms, navigating menus — just like a human user would.

This is a natural fit for Scaling Out because:

  1. Screen captures contain sensitive personal data — better processed locally
  2. GUI tasks involve many sequential steps — latency accumulates
  3. The task requires precise visual grounding and action planning, not broad general knowledge

Mano-P OSWorld Benchmark

Mano-P is an open-source project (Apache 2.0) by Mininglamp Technology that takes this approach. It's a GUI-VLA (Vision-Language-Action) agent designed for edge devices — specifically, it runs entirely on a Mac, with all data staying on the local machine.

The architecture integrates visual understanding, language reasoning, and action generation in a single end-to-end model, trained through a three-stage pipeline (SFT → offline RL → online RL) with a think-act-verify inference loop and GS-Pruning for visual token efficiency.

Published benchmark results (with evaluation framework and model specification noted):

  • OSWorld (72B model): 58.2% accuracy — ranked #1 (2nd place: 45.0%, a 13.2 percentage point gap)
  • WebRetriever Protocol I (72B model): 41.7 NavEval — ranked #1 (Gemini 2.5 Pro: 40.9, Claude 4.5: 31.3)
  • Edge deployment (4B quantized, w4a16): 476 tokens/s prefill, 76 tokens/s decode, 4.3GB peak memory on Apple M4

Hardware requirement: Mac with Apple M4 chip + 32GB RAM (or Mano-P Compute Stick via USB 4.0+).

The takeaway: a 4B-parameter model running locally on a Mac can achieve state-of-the-art results in its domain. Not because small models are universally better, but because the right model for the right task, deployed in the right place, can outperform a general-purpose giant.

Two tracks, one ecosystem

DeepSeek V4 pushing to 1.6 trillion parameters and a 4B model hitting #1 on GUI benchmarks are not contradictory developments. They're two sides of the same evolution in AI:

  • Scaling Up provides the general intelligence foundation — broad reasoning, complex generation, cross-domain capabilities
  • Scaling Out provides the execution layer — privacy-preserving, low-latency, offline-capable, specialized for specific tasks

The two can work together: edge models handle local tasks, and when something exceeds their scope, they call out to cloud models. This layered architecture may be closer to how AI actually gets deployed in the real world than any single-model paradigm.

For developers choosing a direction: it's not about picking the model with the most parameters. It's about picking the model that fits your constraints — compute budget, latency requirements, data sensitivity, deployment environment.

The trillion-parameter era is here. And so is the era of AI that runs on your machine.


Resources: