Cover image for “Wide + Deep: why a 4B model can punch up”
· 6 min read

Wide + Deep: why a 4B model can punch up

Also available in 中文

In one line: DeepSeek-R1 used depth scaling to show that AI can think. Tsinghua’s WideSeek-R1 shows it also has to cast a wide net. A 4B setup standing next to 671B is not brute force. It is teaching the system to divide the work.

Deep dig vs wide spread


The oldest couple in computer science is back

If you took data structures, you remember this pair:

  • Depth-first search (DFS) — one path to the wall, no turning back
  • Breadth-first search (BFS) — lay out every possibility first

They are the yin and yang of the field:

  • DFS is good at digging detail — sudoku, mazes
  • BFS is good at scanning the whole graph — shortest path, social networks

In 2026 that old couple “came back to life” in AI, and started a real argument.


DeepSeek-R1: the depth monster

In 2025 DeepSeek-R1 landed and shocked the field with depth scaling:

  • make the model “think slowly,” the way a person does
  • reason step by step, layer by layer
  • crush a lot of rivals on hard logical tasks

Classic DFS thinking:

“To solve this, dig the first branch all the way. If it fails, backtrack. Repeat until you have an answer.”

DeepSeek-R1’s proof: bigger is not always better. Deeper is smarter.


Is deep enough?

A Tsinghua + Infinigence team asked the awkward question:

“If the job needs not only deep reasoning but very wide information gathering, is one giant model still the optimum?”

Example:

Job: build a timeline of global AI events in 2025.

  • DeepSeek-R1 (DFS):

    • dig January to the bottom, then February…
    • strength: each month is complete
    • cost: slow, and easy to get stuck in a hole
  • The ideal (BFS):

    • send twelve small helpers, one month each
    • gather in parallel, merge at the end
    • strength: fast, wide coverage
    • cost: you need a coordination mechanism

That is the BFS advantage: cast a wide net, catch more fish.


WideSeek-R1: teach the model to divide labor

Tsinghua’s answer: a multi-agent system.

The idea:

  1. Do not send one giant model in alone
  2. Stand up an AI task force
  3. Each agent owns a slice; merge at the end

Like a product squad:

  • PM owns the need
  • design owns UI
  • engineering owns the build
  • QA owns quality

WideSeek-R1 = Deep (deep reasoning) + Wide (wide collaboration).


The number that stings: how does 4B stand next to 671B?

WideSeek-R1’s scorecard:

ModelParametersPerformance
DeepSeek-R1671Bbaseline
WideSeek-R14B × N agentsclose to, sometimes past

A 100× gap in parameters, and a tie?

The secrets:

  1. Parallelism — many small models at once; total throughput can match a giant
  2. Specialization — each agent only has to be good at one slice
  3. MARL (multi-agent RL) — agents learn to coordinate

An analogy:

  • one PhD (671B) vs a group of undergrads (4B × N)
  • the PhD knows everything and works slowly
  • the undergrads each own a specialty; together they can be faster

How do you teach models to cooperate?

1. Task decomposition

Split a large job:

Job: write an AI survey

Agent A: collect 2025 papers
Agent B: collect 2026 papers
Agent C: organize technical trends
Agent D: write the summary

2. Multi-agent reinforcement learning (MARL)

Let agents evolve while they collaborate:

  • Reward: finish fast → higher reward
  • Penalty: duplicate work, conflicting facts
  • Objective: maximize team return

Like a game party:

  • at first everyone does their own thing (bad)
  • after enough raids they start to combo (good)
  • finally they have chemistry (scary)

3. Share information and coordinate

Agents need a channel:

  • shared knowledge base — do not scrape the same thing twice
  • task queue — idle agents pick up work
  • conflict resolution — vote when facts collide

A cluster of small agents collaborating

Why this matters: three scenes

Scene 1: enterprise knowledge Q&A

Classic (Deep):

  • one large model reads every document
  • slow, and it mixes things up

WideSeek (Wide):

  • agent A owns technical docs
  • agent B owns commercial contracts
  • agent C owns HR policy
  • when a user asks, the relevant agents answer together

Scene 2: multilingual generation

Classic:

  • one model brute-learns ten languages
  • fluent in none

WideSeek:

  • ten agents, one language each
  • they collaborate when you need a translation

Scene 3: real-time analytics

Classic:

  • one model walks every data source in series
  • slow enough to doubt your life choices

WideSeek:

  • agent A watches markets
  • agent B watches news
  • agent C watches social
  • parallel ingest, live merge

DFS vs BFS: the wrong fight

Back to the opening: which is stronger, depth-first or breadth-first?

It depends on the scene.

SceneBest shapeExample
Hard logical reasoningDeep (DFS)DeepSeek-R1
Wide information gatheringWide (BFS)WideSeek-R1
Mixed workDeep + Widethe next step

Like:

  • sudoku → DFS (one path to the end)
  • shortest path → BFS (scan the graph)
  • Go → DFS + BFS (AlphaGo’s MCTS)

The future of AI is not Deep or Wide. It is the fusion.


Notes for indie developers

Three lessons from WideSeek-R1:

1. Small and sharp > large and general

  • do not chase “one model for everything”
  • several small models with a split of labor are often more efficient
  • microservices vs a monolith, again

2. Parallel > serial

  • if it can run in parallel, do not serialize it
  • threads, processes, agents
  • time is money

3. Collaboration > solo

  • teach the AI to work as a team
  • design the comms and the reward
  • 1 + 1 > 2

The couple never went out of date

From 1970s graph algorithms to 2026 multi-agent AI:

DFS and BFS have walked with computer science for fifty years.

They are not opposites. They complete each other:

  • Deep teaches AI to think deeply
  • Wide teaches AI to collaborate widely
  • together, that is closer to “intelligence”

DeepSeek taught AI to think. WideSeek taught AI to cooperate.

Next: who teaches it to create?


References

  • Paper: WideSeek-R1: Multi-Agent System with MARL
  • Institutions: Tsinghua University × Infinigence
  • Comparison: 4B setup vs 671B DeepSeek-R1
  • Keywords: multi-agent systems, MARL, width scaling

If this was useful, pass it on.

The future of AI is not a bigger model. It is smarter collaboration.


Original by SSHeRun, first published on this blog Written: 2026-03-27

Comments