The Lowpass Dispatch

Vol. I, No. 2026-05-30 Saturday, May 30, 2026 45 articles surveyed
BUSINESS

Anthropic Revenue Run-Rate Skyrockets to $47 Billion

The AI safety-focused company's annualized revenue has more than tripled since February, signaling intense enterprise demand for frontier models.

Anthropic's run-rate revenue hit $47 billion in May 2026, a dramatic acceleration from $14 billion in February and $30 billion in April of the same year. The company disclosed the new figure in its Series H funding announcement, continuing its practice of sharing the forward-looking metric.

Run-rate revenue annualizes the most recent month's earnings, providing a projection of growth based on current momentum. The more than 3x increase in just over three months points to significant and rapidly growing enterprise adoption of Anthropic's Claude family of models.

This rapid financial growth highlights the fierce competition and massive capital flows defining the foundation model market. As a key rival to OpenAI and Google, Anthropic's ability to convert technical capabilities into substantial revenue underscores the high stakes of the AI platform race.

Sources: Anthropic's run-rate revenue hits $47 billion
EVALUATION

Researchers Question Reliability of LLM Leaderboards and Judges

A wave of new research exposes fundamental flaws in how AI models are evaluated, from statistical invalidity in leaderboards to stylistic biases in LLM-as-a-judge systems.

Current methods for evaluating large language models are facing a crisis of confidence. New research shows that popular leaderboards often lack statistical rigor, and using LLMs as judges introduces systemic vulnerabilities. A May 2026 analysis of public leaderboards found that 11 of 40 pairwise comparisons on one leaderboard and up to 6 of 9 top-10 pairs on another were statistically unresolved.

The popular "LLM-as-a-judge" paradigm is also under fire. A black-box attack framework named BITE demonstrated that simple, meaning-preserving stylistic edits can trick LLM judges into inflating scores by 1-2 points on a 9-point scale, with an attack success rate over 65%. Separately, the SoundnessBench benchmark found that frontier models exhibit a pervasive "optimism bias," frequently rating unsound machine-learning research proposals as viable.

These findings challenge the validity of benchmark-driven progress. For engineers building on these models, it means leaderboard rankings and automated evaluations can be misleading, necessitating more robust, attack-aware, and statistically sound methods for assessing model capabilities.

AGENTS

New Agent Architectures Tackle Mid-Task Failure Recovery

Researchers are developing dual-process systems that allow agents to diagnose and recover from errors within a single episode, without needing new demonstrations.

A new agent architecture called ReflexGrad significantly improves task success by allowing models to recover from mistakes within a single attempt. The system, detailed in a May 2026 paper, boosted a Qwen-3-8B model's success rate on the ALFWorld benchmark from 35.1% to 75.4% without using any demonstrations.

Many LLM agents fail when they commit to a wrong approach early and exhaust their step budget. ReflexGrad implements a dual-process system to combat this. A "fast" process performs continuous refinement every few steps, while a "slow" process for deep causal diagnosis is triggered only after five consecutive low-progress scores. This allows the agent to recognize it's stuck, diagnose the problem, and try a new path.

This approach moves beyond simple trial-and-error, building more robust agents that can self-correct in real-time. The authors report that the 40-point gain comes primarily from the routing mechanism, not model scale, suggesting architectural improvements are a key lever for building more reliable agents.

SECURITY

LoRA Adapters Found Vulnerable to Token-Level Backdoor Attacks

Researchers demonstrated that the popular LoRA fine-tuning format can be reliably backdoored via data poisoning, with attacks generalizing at the token feature level.

Low-Rank Adaptation (LoRA) adapters, the most common format for distributing fine-tuned LLMs, can be reliably backdoored through training data poisoning, according to a May 2026 paper. The attack preserves the model's performance on its primary task while creating a trigger that forces malicious behavior, all with a small fraction of poisoned examples.

The researchers found the backdoor operates at a token-feature level, not a structural one. For example, an adapter poisoned with a specific RFC document reference would activate on any RFC reference but not on structurally identical citations from NIST or ISO. This asymmetry makes the attack difficult to detect with generic probes for "structured citations."

As engineers increasingly rely on community-provided LoRA adapters from hubs like Hugging Face, this vulnerability poses a significant supply chain risk. The paper proposes two detection methods—one behavioral and one based on weight statistics—that successfully identified the poisoned adapters, suggesting a path forward for securing the open-source ecosystem.

TOOLS

LLMs Now Generating Editable PCB Schematics from Text Prompts

A new model named SchGen is the first to generate editable printed circuit board schematics from natural language, tackling a key bottleneck in hardware design.

Researchers have developed SchGen, the first large language model capable of generating editable printed circuit board (PCB) schematics from natural language requests. The work, published in May 2026, marks a significant step in applying generative AI to hardware design, a field that has remained largely manual and expertise-intensive.

The key innovation is a new "semantically grounded code representation" for schematics. Instead of dealing with verbose, tool-specific syntax and geometric data, this representation encodes editing primitives with relative placement and pin-name-based wiring. This transforms the task from a difficult geometry problem into a semantics-driven matching problem more suitable for LLMs.

Automating schematic design could dramatically accelerate hardware development cycles. By creating and open-sourcing a large-scale dataset of schematics paired with user prompts, the SchGen project provides a foundation for AI-powered tools that could function like a "Copilot for hardware engineers."