Field notes

The AI Ascend blog.

Deep dives, applied tutorials, and the AI news that matters.

Jun 29, 2026

Sleep-Time Compute: Thinking About the Context Before the Question Arrives

Test-time compute makes models smarter but slower and pricier. Sleep-time compute moves the thinking to before the user asks, cutting the compute needed for the same accuracy by roughly 5x and the cost per query by 2.5x when context is reused.

22 min read

Jun 28, 2026

Why Token-Level RL Collapses: GSPO and Sequence-Level Importance Sampling

GRPO weights every token by its own importance ratio, and on long responses that single-sample estimator quietly poisons the gradient until the model collapses. GSPO moves the ratio up to the whole sequence, and Qwen3's largest models stopped falling over.

23 min read

Jun 27, 2026

Latent Reasoning: Teaching Language Models to Think Without Tokens

Chain-of-thought made models reason out loud, one word at a time. A new line of work lets them reason in the silent space between words, trading auditability for compute that does not have to be spelled out.

24 min read

Jun 25, 2026

Trainable Sparse Attention: When the Model Learns What to Skip

For years, sparse attention was a bolt-on applied after training to shrink the KV cache. NSA, MoBA, and DeepSeek's DSA flip that order, training the sparsity end to end and reporting up to 11x faster decoding without losing accuracy.

19 min read

Jun 24, 2026

The Moderation Tax: How Guardrail Classifiers Trade Latency for Coverage

A guardrail is a classifier sandwich wrapped around your model, and every layer you add buys coverage with latency and false refusals. Here is how the layer actually works, what it costs, and where it breaks.

22 min read

Jun 22, 2026

When the Judge Is Also a Player: LLM-as-Judge, Contamination, and Why Leaderboards Drift

A strong model grading other models looks like a free lunch for evaluation. It is not. Position, verbosity, and self-preference biases plus quietly leaked test sets mean a leaderboard number can move several points without any model getting smarter.

22 min read

Jun 21, 2026

Multi-Agent Orchestration Patterns: When Coordination Beats One Agent, and When It Just Multiplies Cost

A single agent burns about 4x the tokens of a chat. A multi-agent system burns about 15x. The whole question of orchestration is whether the extra agents buy you accuracy worth more than that bill, and four named patterns decide the answer.

19 min read

Jun 20, 2026

Agent Memory Systems: Episodic, Semantic, and the Architecture of Remembering

An LLM agent with a million-token window still forgets what you told it last week. Memory is not a bigger context; it is a separate system that decides what to write down, how to summarize it, and what to pull back. Here is how that system is built.

20 min read

Jun 19, 2026

Model Context Protocol: How One JSON-RPC Standard Collapsed the M×N Integration Problem

Before MCP, connecting five agents to twenty tools meant writing a hundred bespoke adapters. A protocol turns that multiplication into an addition, and the math is the whole story.

21 min read