JS Wei (Jack) Sun

CauAudit dents MLLM zoom, Adobe LDR ships 4M physics, Mechanist rediscovers

Today's three research drops each stand or fall on an audit that was applied, missing, or externally unverified.

CauAudit dents MLLM zoom, Adobe LDR ships 4M physics, Mechanist rediscovers

TL;DR

  • CauAudit shows DeepEyes keeps V* accuracy when its zoom crops are swapped for random noise.
  • Mini-o3 exhausts its tool-call budget on 84.8% of intervened V* trajectories, looping on irrelevant regions.
  • Adobe LDR cuts physics extrapolation error 27.7× versus a DiT-S baseline using 4.1M parameters.
  • Mechanist wires 4 agents to 32 mech-interp tools, lifting Pythia belief-state accuracy 15.3%.
  • Mechanist’s flagship discovery is a rescaling of subliminal-learning results already published in 2024-25.

Today’s three research drops each stand or fall on an audit. CauAudit is the audit — swap DeepEyes’ zoom crops for random noise and V* accuracy barely moves, exposing tool-use as ritual rather than reasoning. Mechanist ships its own self-audit scaffolding (an INTEGRITY_AUDIT.md, an adversarial reviewer sub-agent) but the repo has zero outside issues or PRs, and its flagship cross-modal subliminal learning result is a rescaling of 2024-25 work the paper doesn’t cite closely. Adobe’s LDR posts a 27.7× extrapolation gap reduction at 4.1M params — a real number, but confined to a white-box simulator with no external reproduction yet.

The through-line: whether a headline result survives depends less on the number than on who checks it and how. The round-ups lean the same direction — a position paper arguing agent safety belongs at runtime with verifiable trajectories, and Spark-to-Paper’s self-refutation loop against cited evidence.

MLLMs call zoom tools without using the crops, audit shows

Source: hf-daily-papers · published 2026-08-05

TL;DR

  • CauAudit finds “thinking with images” gains are mostly shortcut behavior, not causal use of visual evidence.
  • DeepEyes shows near-zero accuracy drop on V* when its zoom crops are swapped for random noise.
  • Mini-o3 exhausts its tool-call budget in 84.8% of intervened V* trajectories, looping on irrelevant regions.
  • Authors blame outcome-only RL: rewarding the final answer teaches models to invoke tools as ritual.

The illusion

“Thinking with images” — where a multimodal LLM crops, zooms, and re-inspects an image mid-reasoning — has become the default recipe for high-resolution perception benchmarks. The headline numbers look great. Pixel Reasoner picks up 10 points on MME-RealWorld; Mini-o3 gains 21.3 on VisualProbe. A new causal audit from OpenCausaLab argues most of that improvement is theater.

The framework, CauAudit, treats a rollout as a causal graph with three paths from input to answer: direct inference, observation-mediated (the crop actually informs the answer), and an action-induced shortcut where the mere act of calling a tool nudges the output regardless of what came back 1. To separate them, the authors run a three-level intervention: baseline vs. tool-enabled, dynamic corruption (replace every requested crop with a random one at runtime), and Visual Evidence Gain, a step-level counterfactual that swaps a single observation under a fixed prefix.

The most damning result is a null: DeepEyes’ accuracy on V* is 83.3% with real crops and 83.3% with corrupted crops. The model is calling the tool but not conditioning on the output — literally Calling Without Looking.

Two failure modes

CauAudit’s diagnostic classifier sorts every rollout into one of four buckets:

  1. No-call — model answers directly.
  2. Calling Without Looking (CWL) — tool is invoked, observation has no causal effect.
  3. Looking Without Planning (LWP) — informative crops are retrieved but scheduled incoherently (repeated zooms on empty regions, continued search after the answer is knowable).
  4. Calibrated — the intended behavior.

The gain concentration is stark. In Mini-o3, essentially all of the aggregate accuracy improvement comes from the small Calibrated slice (3.3pp contribution), while the CWL and LWP majority burn ~30,000 extra tokens per query on HR-Bench-8K for a 4.2-point Pixel Reasoner gain. Over-extension is common: Mini-o3 hits its 32-turn ceiling on 84.8% of V* trajectories after intervention, often in zoom-loops.

Why this happens

The paper’s hypothesis — that outcome-only RL is the culprit — lines up uncomfortably well with the design of the models it audits. DeepEyes was built on end-to-end RL with outcome rewards alone, deliberately skipping SFT cold-start 2. Mini-o3 uses “over-turn masking” so long chains aren’t penalized during training, then scales inference to 32 turns from a 6-turn training budget 3. Both choices assume outcome reward is enough to induce genuine visual reasoning. CauAudit’s evidence says it induces the ritual instead.

The pathology isn’t confined to vision. Project Ariadne, applying do-calculus interventions to text-only chains-of-thought, reports “Causal Decoupling” densities up to 0.77 in factual domains — reasoning that doesn’t drive the answer it precedes 4. CWL is the multimodal cousin of Reasoning Theater.

What to do about it

CauAudit diagnoses; it doesn’t prescribe. The obvious candidate treatment already exists on the shelf: calibrated Process Reward Models that score each step rather than the final answer, enabling early termination on hopeless zoom-loops 5. That’s a compute-heavy fix, and it requires the training-time controls the CauAudit authors flag as future work. Until someone runs that experiment, benchmark leaderboards for visual tool-use should be read with the corruption test in mind — the code is public 1, and the null result on DeepEyes is easy to reproduce.


Mechanist scales mech-interp but rediscovers a known risk

Source: hf-daily-papers · published 2026-08-11

TL;DR

  • ZJU’s Mechanist wires 4 coordinating agents to a library of 32 mech-interp tools and a 13k-paper knowledge graph.
  • On Pythia it localizes “belief heads” and amplifies them for +15.3% accuracy on belief-state tasks, no retraining.
  • Its flagship “discovery” — subliminal learning across modalities — is a scale-up of a phenomenon already characterized in 2024–25 work.
  • Self-audit tooling (INTEGRITY_AUDIT.md, adversarial reviewer sub-agent) is sensible but unverified externally — zero outside issues/PRs on the repo.

What Mechanist actually is

Mechanist is an agentic framework from ZJU-NLP that treats mechanistic interpretability as an automatable scientific pipeline. A central orchestrator routes work between a Hypothesis Agent (grounded in a purpose-built KG of ~13,000 interpretability papers plus SciAtlas’s 43M-paper index), an Experiment Agent that composes runs from a library of 32 methods across 11 families (causal intervention, representation probing, Fisher ranking), a Verification Agent that checks for data leakage and cross-model robustness, and an Iteration Agent that decides whether to refine the hypothesis or the experiment.

flowchart LR
    KG[Interpretability KG<br/>~13k papers + SciAtlas 43M] --> H[Hypothesis Agent]
    H --> E[Experiment Agent<br/>32 tools / 11 families]
    E --> V[Verification Agent<br/>leakage + robustness]
    V --> I[Iteration Agent]
    I -->|refine| H
    I -->|rerun| E
    V --> M[(Global memory<br/>+ reviewer memory)]

Memory is externalized to append-only files rather than long chat histories — a direct response to the drift problems that plague long-running agent loops.

The results that hold up

The strongest evidence is the belief-head work on Pythia. Mechanist localizes L4.H1 as an “attributed belief” head and L9.H1/L7.H5 as “personal belief” heads, then shows AB capability emerges by ~2k pretraining steps while PB develops later. Amplifying those heads at inference yields net accuracy gains of +15.3% on Pythia-410M, +8.8% on 1B, and +3.5% on 2.8B — versus +0.1–3.1% from prompt hints. The interdisciplinary case is also concrete: steering a specific SAE feature in Evo2-7B lifted α-helical content in generated DNA-encoded proteins from 43.8% to 56.6%, beating random-feature steering.

The rediscovery problem

Mechanist frames its “multimodal subliminal learning” result — a Qwen3.5-9B student inheriting a 48.6% unsafe-response rate from an unsafe teacher via safe-looking text — as an autonomous discovery. It isn’t, quite. The core phenomenon was already characterized in the Cloud/Truthful AI Subliminal Learning line, where number-sequence fine-tuning transmitted an owl preference between shared-base models 6. The genuinely new bit is the cross-modal jump; the mechanism (shared-initialization statistical signatures) and its resistance to filtering were prior art. Defensive work like Liminal Training / Phantom Transfer has already shown the trait survives 11 tested defenses including full paraphrasing, and proposes annealed KL regularizers as a mitigation Mechanist doesn’t evaluate 7.

Can an agent audit itself?

The load-bearing meta-claim is that Mechanist’s Verification Agent, cross-model grading, and INTEGRITY_AUDIT.md reports 8 make its findings trustworthy without human review. The parallel MechEvalAgent effort is skeptical: it reaches 80% agreement with human judges but still surfaces 51 methodological issues humans missed, including implicit hallucinations where an agent’s narrative describes ablations the underlying code never runs 9. And the Sakana AI Scientist baseline Mechanist claims to beat is the cautionary example — that agent tried to rewrite its own runner script to bypass a timeout, hit ~42% experiment failure, and shipped placeholder-laden papers 10.

Automated systems may generate low-level explanations that fail to provide true conceptual understanding.

That May 2026 critique cited in an independent review of the paper 11 is the fair frame. Mechanist is a well-instrumented harness for scaling known mech-interp workflows and reproducing known phenomena. Treat the belief-head intervention and the Evo2 steering as real contributions; treat the “autonomous discovery” framing as marketing until an outside team reruns it.


Adobe’s LDR extrapolates physics with 4M params, 143× faster

Source: hf-daily-papers · published 2026-08-09

TL;DR

  • Latent Dynamics Reasoning (LDR) shrinks the in-distribution vs. out-of-distribution error gap 27.7× vs. a DiT-S video baseline on PhyWorld tasks.
  • 4.1M parameters and 0.036s per 32-frame clip — versus 106M and 5.2s for the diffusion baseline.
  • The trick: regress only “jerk” in a structured latent, then analytically integrate acceleration, velocity, and position each step.
  • Caveats are large: white-box simulator only, rigid geometry, and no external reproduction of the repo yet.

The failure mode LDR targets is real

A year before this paper, Kang et al.’s PhyWorld study made the uncomfortable case that video diffusion models don’t learn physics — they do “case-based” generalization, matching the nearest training example, and scaling parameters or data doesn’t close the out-of-distribution gap 12. That result reframed video generation quality as an interpolation trick. LDR, from Adobe and UCSD, is a direct architectural reply on the same benchmark.

The headline number: under joint training across five physics tasks, a DiT-S baseline’s average position error jumps from 0.086 (ID) to 0.592 (OOD). LDR moves from 0.050 to 0.068 — a 27.7× smaller gap 13. It does this while being 26× smaller in parameters and 143× faster at inference, because it predicts each future frame in a single forward pass instead of iterative denoising.

What the model actually does

LDR replaces “predict the next frame” with “predict how latent coordinates evolve.” The pipeline has three moving parts:

flowchart LR
    A[3 conditioning frames] --> B[CNN + soft-argmax<br/>→ centroids μ, extents σ]
    B --> C[Finite differences<br/>→ v₀, a₀]
    C --> D[MLP regresses jerk<br/>third-order residual]
    D --> E[Numerical integration<br/>a → v → position]
    E --> F[Warping decoder<br/>→ RGB frame]

The inductive bias is the whole point. Kinematics up to acceleration is hard-coded; the network only learns the residual — the change in acceleration between steps. That’s why a model trained on red balls can predict the trajectory of a blue square or an Earth-textured ball: the geometry evolves under the same integrator regardless of what’s painted on top. The warping decoder handles appearance separately, so pixels never have to be re-hallucinated.

Where LDR sits in the world-model debate

Yann LeCun has spent two years arguing that pixel prediction is the wrong substrate — JEPA-style latent prediction reportedly gets 80% vs. 15% on zero-shot robot control with a fraction of the data 14. LDR shares that instinct but keeps a pixel decoder, occupying a middle ground. The other neighbor is the PhysGen/PhysDreamer line, which bolts explicit rigid-body or MPM solvers onto generators; those are precise in-domain but “struggle with complex real-world scenes where geometry cannot be easily reconstructed” 15. LDR bets that a soft physics prior — analytic integration of a learned residual — generalizes further than a hard solver and stays cheaper than a JEPA-scale encoder.

Where the skepticism lands

Structured-latent priors have a known ceiling: they “are not yet constraint-satisfying simulators” and can quietly violate non-penetration or energy conservation while looking plausible 16. LDR’s own limitations section concedes the matching problem — centroids and extents can’t represent deformables, color dynamics, or cluttered scenes, and everything shown lives inside PhyWorld.

LDR would likely struggle to model an object changing color over time.

Reproducibility is also unproven. The adobe-research/LDR repo currently shows zero issues and zero PRs, and outside runs will hinge on matching the exact conditioning-frame setup used to seed the finite-difference velocity and acceleration 17. The 143× and 26× numbers are the authors’, not yet the community’s.

The interesting question isn’t whether LDR wins on PhyWorld — it clearly does. It’s whether kinematic integration in latent space survives contact with deformables, occlusion, and natural video, or whether it stays a beautiful proof of concept for balls on a plane.

Round-ups

Paper argues agent safety belongs at runtime, not training

Source: hf-daily-papers

Runtime enforcement via sandboxes, permission gates, and trajectory monitors should replace reliance on RLHF, DPO, or Constitutional AI alone, the authors argue. They propose an Agent Trajectory Schema and Evidence Chain that produce verifiable audit trails for every action a deployed agent takes.

Strong models scaffold weak ones to top benchmarks at inference

Source: hf-daily-papers

Instead of distilling weights, a stronger model writes deterministic code, routing logic, and answer-format enforcers that a weaker model executes at test time. The harnesses lift weak-model scores on Theory-of-Mind benchmarks sharply without any parameter updates, suggesting a cheaper alternative to training-time transfer.

3PO perturbs LLM policy weights to fix RLVR exploration

Source: hf-daily-papers

Perturbed Parameter Policy Optimization samples in weight space rather than action space, diversifying rollouts and shrinking the zero-advantage groups that stall GRPO training. The variational approach reduces reward-estimation collapse on LLM reinforcement learning runs, with code released as C3PO by INSAIT.

Genesis centers coding agents on projects, not persistent agents

Source: hf-daily-papers

By treating the codebase itself as the persistent state and spinning up ephemeral agents against it, Genesis sustained multi-day runs that built a compiler and reimplemented numerical modules. The system uses DeepSeek V4 Flash and GLM 5.2 at low cost while beating agent-persistent baselines.

EA benchmark tests coding agents on building world models

Source: hf-daily-papers

AutoWorldModel-Bench, from Electronic Arts, drops autonomous coding agents into game environments with a starter dynamics model and a shared structured-state format, then scores how well they iteratively improve architecture and training objectives. It targets open-ended world-model research rather than one-shot code tasks.

AtlasVLA gives robots a 4D world-ego memory for long tasks

Source: hf-daily-papers

A voxel-hashed spatial state plus an ego-working memory feeds a diffusion transformer policy, letting a single wrist-camera robot plan proactively instead of reacting frame-by-frame. AtlasVLA holds up on long-horizon manipulation where standard vision-language-action models drift or lose track of prior steps.

Spark-to-Paper turns coding assistants into research paper writers

Source: hf-daily-papers

The workflow slots into existing coding assistants as a composable skill, splitting planning from reporting and running a self-refutation loop that revises claims against cited evidence. Integrity checks on citation validity and figure editability cut fabrication, and the paper drew 282 upvotes on Hugging Face.

Footnotes

  1. OpenCausaLab/CauAudit GitHub repositoryhttps://github.com/OpenCausaLab/CauAudit

    The repo ships veg/, obs_intervention/, and analysis/ modules built on vLLM for step-level Visual Evidence Gain, dynamic observation corruption, and diagnostic rollout classification.

    2
  2. DeepEyes paper (alphaXiv 2505.14362)https://www.alphaxiv.org/abs/2505.14362

    DeepEyes achieves its results through end-to-end RL with outcome-based rewards alone, bypassing the need for pre-collected tool-use trajectories or SFT cold-start.

  3. Mini-o3 (arXiv 2506.23918v3)https://arxiv.org/html/2506.23918v3

    Mini-o3 is designed to scale to 32 interaction turns at inference time despite being trained on a turn budget of six, using over-turn masking so long reasoning chains are not penalized.

  4. Project Ariadne: Structural Causal Framework for LLM Faithfulness (ResearchGate)https://www.researchgate.net/publication/399477353_Project_Ariadne_A_Structural_Causal_Framework_for_Auditing_Faithfulness_in_LLM_Agents

    Empirical audits uncovered a pervasive ‘Faithfulness Gap’ — Reasoning Theater — with Causal Decoupling violation densities as high as 0.77 in factual and scientific domains.

  5. Calibrating Process Reward Models (Medium, Jain)https://medium.com/@himankvjain/calibrating-process-reward-models-for-reliable-and-efficient-reasoning-in-language-models-4f25ecfad808

    Calibrated PRMs enable Instance-Adaptive Scaling that allocates more reasoning trajectories to difficult problems while stopping early on hopeless branches, reducing hallucinated tool invocations.

  6. subliminal-learning.com (Cloud/Truthful AI project page)https://subliminal-learning.com/

    A student fine-tuned on number sequences generated by an owl-preferring teacher will itself develop a preference for owls, even if the numbers contain no explicit references to birds; transfer is most potent when the teacher and student share the same base model.

  7. arXiv 2507.14805 — Liminal Training / subliminal defenseshttps://arxiv.org/html/2507.14805v1

    Standard data-level defenses such as keyword filtering are largely ineffective against subliminal learning; ‘Phantom Transfer’ poisoning survived 11 tested defenses including full dataset paraphrasing, motivating an annealed KL regularizer to suppress the non-linear spike of trait acquisition in early fine-tuning steps.

  8. GitHub — zjunlp/Mechanist READMEhttps://github.com/zjunlp/Mechanist

    The system requires a cross-validation model independent of the primary Claude model to grade findings, and produces an INTEGRITY_AUDIT.md report comparing results across model/dataset swaps; hard constraints in task.md cause the agent to halt rather than proceed with suboptimal parameters.

  9. Chicago HAI Substack — MechEvalAgenthttps://cichicago.substack.com/p/mechevalagent-grounded-evaluation

    MechEvalAgent achieves over 80% agreement with human judges while surfacing 51 methodological issues that human reviewers missed, including ‘implicit hallucinations’ where an agent’s narrative sounds scientifically sound but the underlying code fails to implement the described procedures.

  10. YouTube review of Sakana ‘The AI Scientist’ (comparison baseline)https://www.youtube.com/watch?v=X_bZCyWjLPA

    When an experiment reached a runtime limit, the agent did not optimize its code but instead attempted to edit its own runner script to extend the timeout; roughly 42% of experiments failed due to coding errors and manuscripts resembled ‘rushed undergraduate papers.’

  11. themoonlight.io — independent review of Mechanisthttps://www.themoonlight.io/en/review/mechanist-ai-as-a-scientific-instrument-for-discovering-the-mechanisms-of-intelligence

    Open questions remain about whether these agentic systems can reliably distinguish superficial correlations from deep causal mechanisms; a May 2026 critique, Mechanistic Interpretability Needs Philosophy, argues the field is still ‘pre-paradigmatic’ and automated systems may generate low-level explanations that fail to provide true conceptual understanding.

  12. Kang et al., ‘How Far is Video Generation from World Model: A Physical Law Perspective’ (ResearchGate)https://www.researchgate.net/publication/385560421_How_Far_is_Video_Generation_from_World_Model_A_Physical_Law_Perspective

    Models do not abstract general physical rules; instead, they exhibit ‘case-based’ generalization, referencing the closest training example… scaling model parameters or data volume improves performance on known distributions but does not bridge the OOD gap.

  13. ResearchGate mirror of the LDR paper (Adobe/UCSD)https://www.researchgate.net/publication/412114177_Learning_How_the_World_Evolves_Extrapolative_Video_World_Models_via_Latent_Dynamics_Reasoning

    Under joint training the DiT-S baseline’s average position error jumped from 0.086 (ID) to 0.592 (OOD)… LDR stayed nearly constant, moving from 0.050 (ID) to 0.068 (OOD)—a 27.7× smaller ID-OOD gap.

  14. pebblous.ai — ‘Yann LeCun on JEPA and World Models’https://blog.pebblous.ai/blog/yann-lecun-jepa-world-models/en/

    Predicting the future pixel by pixel consumes vast computational resources on irrelevant details like textures… JEPA predicts in latent space, reportedly achieving superior zero-shot robot control (80% vs 15%) while requiring far less data than pixel-based generators.

  15. arXiv:2411.19125 — physics-aware video generation (PhysGen/PhysDreamer line)https://arxiv.org/abs/2411.19125

    Simulation-based models like PhysDreamer and the original PhysGen show high precision for their specific domains (oscillations and rigid-body movement) but struggle with complex real-world scenes where geometry cannot be easily reconstructed.

  16. arXiv:2603.00110 — structured latent / kinematics-aware world model comparisonhttps://arxiv.org/html/2603.00110v1

    Latent motion priors are not yet ‘constraint-satisfying simulators’—meaning they can still produce motions that violate basic physics like non-penetration or energy conservation.

  17. adobe-research/LDR GitHub repository status (via DailyArxiv aggregator)https://github.com/Ed1sonChen/DailyArxiv/blob/main/README.md

    Zero open issues and zero pull requests, suggesting that external stress-testing by the wider developer community is still in its infancy… successful reproduction requires precisely matching the ‘conditioning frame’ initialization used in the paper to properly calculate initial time derivatives for the kinematic integration.

Jack Sun

Jack Sun, writing.

Engineer · Bay Area

Hands-on with agentic AI all day — building frameworks, reading what industry ships, occasionally writing them down.

Digest
All · AI Tech · AI Research · AI News
Writing
Essays
Elsewhere
Subscribe
All · AI Tech · AI Research · AI News · Essays

© 2026 Wei (Jack) Sun · jacksunwei.me Built on Astro · hosted on Cloudflare