Ground Truth.
AI, checked against the source.

AI papers — 2026-06-19

Every paper on Hugging Face's Daily Papers list, most-upvoted first — each linked to arXiv, with a plain-English summary and a technical breakdown underneath.Both are AI-written — the summary from the authors' abstract, the breakdown from the paper's full text — and are not individually fact-checked by us. The paper itself is the source.
← 2026-06-182026-06-192026-06-22 →
Jump to one of 34 papers
  1. Moebius: 0.2B Lightweight Image Inpainting Framework with 10B-Level Performance
  2. DragMesh-2: Physically Plausible Dexterous Hand-Object Interaction with Articulated Objects
  3. Playful Agentic Robot Learning
  4. Multi-LCB: Extending LiveCodeBench to Multiple Programming Languages
  5. S-Agent: Spatial Tool-Use Elicits Reasoning for Spatial Intelligence
  6. DF3DV-1K: A Large-Scale Dataset and Benchmark for Distractor-Free Novel View Synthesis
  7. Beyond Static Leaderboards: Predictive Validity for the Evaluation of LLM Agents
  8. FreeStyle: Free Control of Style-Content Dual-Reference Generation from Community LoRA Mining
  9. JanusMesh: Fast and Zero-Shot 3D Visual Illusion Generation via Cross-Space Denoising
  10. FlowBender: Feedback-Aware Training for Self-Correcting Conditional Flows
  11. ImageWAM: Do World Action Models Really Need Video Generation, or Just Image Editing?
  12. Current World Models Lack a Persistent State Core
  13. ENPIRE: Agentic Robot Policy Self-Improvement in the Real World
  14. FAPO: Fully Autonomous Prompt Optimization of Multi-Step LLM Pipelines
  15. Context-Aware RL for Agentic and Multimodal LLMs
  16. Thinking with Visual Grounding
  17. LedgerAgent: Structured State for Policy-Adherent Tool-Calling Agents
  18. HumanScale: Egocentric Human Video Can Outperform Real-Robot Data for Embodied Pretraining
  19. Understanding the Behaviors of Environment-aware Information Retrieval
  20. Holo-World: Unified Camera, Object and Weather Control for Video World Model
  21. The FID Lottery: Quantifying Hidden Randomness in Generative-Model Evaluation
  22. JAMER: Project-Level Code Framework Dataset and Benchmark on Professional Game Engines
  23. Freeing the Law with LOCUS: A Local Ordinance Corpus for the United States
  24. Adaptive Volumetric Mechanical Property Fields Invariant to Resolution
  25. LegalHalluLens: Typed Hallucination Auditing and Calibrated Multi-Agent Debate for Trustworthy Legal AI
  26. Taylor-Calibrate: Principled Initialization for Hybrid Linear Attention Distillation
  27. Selective Synergistic Learning for Video Object-Centric Learning
  28. Rethinking Shrinkage Bias in LLM FP4 Pretraining: Geometric Origin, Systemic Impact, and UFP4 Recipe
  29. LooseControlVideo: Directorial Video Control using Spatial Blocking
  30. The Data Manifold under the Microscope
  31. Duration Aware Scheduling for ASR Serving Under Workload Drift
  32. Configurable Clinical Information Extraction with Agentic RAG
  33. No Resource, No Benchmarks, No Problem? Evaluating LLMs for Code Generation in No-Resource Languages
  34. ReSyn: A Generalized Recursive Regular Expression Synthesis Framework

Moebius: 0.2B Lightweight Image Inpainting Framework with 10B-Level Performance →

arXiv 2606.19195 · ▲ 103 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Industrial image inpainting models with 10B+ parameters (e.g., FLUX.1-Fill-Dev at 11.9B) achieve high quality but are computationally prohibitive for resource-constrained deployment.

Method: Moebius uses Local-λ and Interactive-λ (Lλ MI) blocks that encode spatial contexts and global semantic priors into fixed-size linear matrices via depthwise convolutions and Mix-FFN, replacing memory-intensive attention maps. Cross-attention with external guidance embeddings is handled through lightweight positional embeddings in the Interactive-λ module. Training applies adaptive multi-granularity distillation strictly in latent space with three loss components — coarse-grained bottleneck alignment, fine-grained output distillation, and a latent perceptual loss (E-LatentLPIPS) — balanced by gradient-based adaptive weighting.

Key results:

  • 0.22B parameters vs. 11.9B for FLUX.1-Fill-Dev (less than 2% of teacher size)
  • Inference latency: 26.01 ms/step vs. 161.01 ms/step (>15× faster)
  • Total time for 20 steps: 0.52 s vs. 8.05 s (15.4× acceleration)
  • Places2 Small FID: 0.92 (vs. 0.94 for FLUX.1-Fill-Dev)
  • CelebA-HQ FID: 5.39 (vs. 10.13, a 47% improvement)
  • User study preference: 31.76% (Moebius) vs. 23.70% (FLUX), approaching teacher at 32.18%

Why it matters / caveats: Demonstrates that extreme compression of a large diffusion model into a task-specific specialist is viable, enabling real-time inpainting on consumer hardware. Performance degrades on tiny background regions where local context is limited, and the model is task-specific rather than general-purpose.

DragMesh-2: Physically Plausible Dexterous Hand-Object Interaction with Articulated Objects →

arXiv 2606.15133 · ▲ 64 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Dexterous robotic hands must move articulated objects (doors, drawers) purely through sustained contact forces, but RL policies trained on nominal dynamics overfit and collapse under changing contact loads.

Method: PICA (Physically Informed Contact-Aware) training uses a 51-DoF SMPL-X hand and injects observable physical signals into policy learning via contact-regularized rewards (for contact maintenance, detachment handling, and action regularization), damping randomization during training (range 1.0–2.0), a Gated Linear Attention (GLA) temporal encoder that processes recent PD tracking error and previous action history, and auxiliary supervision predicting recent object joint response, maximum palm-handle distance, detachment risk, and tracking stress. Optimization combines PPO, value loss, action-boundary regularization, and auxiliary contact-response prediction.

Key results:

  • Nominal (×1 damping) success rate: 0.89 (PICA) vs. 0.58 (state-only PPO) vs. 0.35 (Transformer-PPO)
  • Out-of-distribution (×4 damping) success rate: 0.56 (PICA) vs. 0.27 (PPO) vs. 0.09 (Transformer-PPO)
  • Ablation: GLA alone achieves 0.36, physical signals alone 0.43, combined PICA achieves 0.56 at ×4 damping
  • Dataset: 277 geometry-guided trajectories across 7 GAPartNet categories
  • Critical finding: longer training inflated nominal success from 0.90→1.00 while OOD success collapsed from 0.55→0.10

Why it matters / caveats: Reveals that nominal task success is a misleading metric without contact-robustness evaluation, and that auxiliary physical signals substantially improve OOD generalization without force/tactile sensors. Even with PICA, success drops 33% from nominal to strong OOD damping; evaluation starts from expert grasps and does not yet integrate locomotion.

Playful Agentic Robot Learning →

arXiv 2606.19419 · ▲ 37 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Code-as-policy robot systems only acquire reusable skills after explicit task instructions arrive, wasting the opportunity for continual autonomous skill development during idle time.

Method: RATs (Robotics Agent Teams) comprises three coordinated multi-agent teams: a Task Proposer Team that selects exploratory tasks by maximizing a Goldilocks objective τ = arg max[𝒩(τ)·ℱ(τ)] balancing novelty (rare object-skill combinations) and competence frontier (~50% success rate targets); an Execution Team implementing a Write-Execute-Verify-Diagnose loop with SubAgents that isolate and practice failed sub-actions; and a Memory-Management Team maintaining a tiered frozen skill library (experimental/verified/deprecated) and compact failure memory, with periodic curation merging duplicates.

Key results:

  • LIBERO-PRO: 43.8% success (RATs) vs. 23.2% baseline (+20.6 percentage points)
  • MolmoSpaces: 38.0% vs. 21.0% (+17.0 pp)
  • Cross-environment transfer (RoboSuite): +8.9 pp
  • Real-world sim-to-real: +8.8 pp
  • Ablation: random play yields 24.7%, curious play 32.3%, full RATs 43.8%

Why it matters / caveats: Demonstrates that pre-task autonomous play substantially improves downstream performance, with learned code skills functioning as plug-and-play additions to other agents without model fine-tuning. Evaluation remains primarily simulation-based, and the system relies heavily on VLM verification, limiting scalability to complex dexterous manipulation.

Multi-LCB: Extending LiveCodeBench to Multiple Programming Languages →

arXiv 2606.20517 · ▲ 35 on Hugging Face · HF page · PDF

Technical breakdown

Problem: LiveCodeBench evaluates LLMs exclusively on Python code generation, leaving open whether strong Python performance reflects genuine multilingual coding competence or overfitting to one language.

Method: Multi-LCB transforms Python tasks from LiveCodeBench into equivalent problems across 12 languages (C++, C#, Java, Rust, Go, TypeScript, JavaScript, Ruby, PHP, Kotlin, Scala, and Python) by converting LeetCode functional-format tasks to a unified STDIN/STDOUT format via an automatic prompt adaptation and test conversion pipeline. Evaluation uses zero-shot prompting with language-specific system messages, isolated sandbox containers with 6-second timeouts and 4 GB memory limits, and Pass@1 scoring. The benchmark automatically tracks future LCB updates.

Key results:

  • Python mean Pass@1: 48.2% (highest across languages)
  • Scala mean Pass@1: <29% (lowest)
  • Best model (Qwen3-235B-A22B): 74.0% Python vs. 57.6% Scala
  • Python performance consistently exceeds other languages by 10–60 percentage points depending on model
  • Mean performance across languages: 64.0% (Qwen3-235B) down to substantially lower for weaker models

Why it matters / caveats: Confirms that Python is not a reliable proxy for multilingual coding ability, with substantial and practically meaningful performance gaps across languages. Evaluation is limited to 12 languages and competitive programming tasks; real-world engineering scenarios and proprietary models are excluded.

S-Agent: Spatial Tool-Use Elicits Reasoning for Spatial Intelligence →

arXiv 2606.20515 · ▲ 31 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Vision-language models treat spatial reasoning as isolated frame-level prediction rather than grounded 3D geometric reasoning, creating a semantic-to-geometric gap that prevents accurate multi-view spatial understanding.

Method: S-Agent formulates spatial reasoning as iterative spatio-temporal evidence accumulation maintained through a Scene Memory (grounded entities across frames) and Agent Memory (tool calls and reasoning traces). A three-level hierarchy executes: Level 1 (2D visual: object detection and frame grounding via GroundingDINO), Level 2 (3D lifting: metric depth recovery via Depth-Anything-3), and Level 3 (five spatial expert modules for metric measurement, counting, orientation, relative position, and object-centric viewing). A supervised fine-tuning dataset S-300K was generated from 100K questions via zero-shot S-Agent with GPT-5.4, yielding 292,391 training samples after filtering; Qwen3-VL-8B was fine-tuned on this data (S-Agent-8B) for one epoch on 8×B200 GPUs.

Key results:

  • Zero-shot (GPT-5.4 planner): MMSI-Bench 46.4% (+4.5% over GPT-5.4 baseline), ViewSpatial-Bench 60.0% (+14.4%)
  • S-Agent-8B vs. Qwen3-VL-8B baseline: MMSI-Bench 41.6% vs. 31.1% (+10.5%), ViewSpatial-Bench 46.8% vs. 42.2%, ReVSI 52.8 vs. 49.1
  • S-Agent-8B achieves performance comparable to GPT-5.4 and Gemini 3 Pro on spatial benchmarks

Why it matters / caveats: Demonstrates that tool-augmented spatial reasoning with metric depth and expert modules substantially outperforms end-to-end VLMs at spatial tasks, with effective knowledge distillation from teacher trajectories to an 8B model. Raw 3D evidence provides minimal gains without expert interpretation, and tool execution complexity limits real-world deployment.

DF3DV-1K: A Large-Scale Dataset and Benchmark for Distractor-Free Novel View Synthesis →

arXiv 2604.13416 · ▲ 25 on Hugging Face · HF page · PDF

Technical breakdown

Problem: No large-scale dataset with paired clean and cluttered images per scene exists for distractor-free radiance field development, limiting progress on robust novel view synthesis in the presence of moving objects and occlusions.

Method: DF3DV-1K provides 1,048 real-world scenes with paired clean and cluttered image sets captured using consumer cameras, comprising 89,924 total images across 128 distractor types and 161 scene themes in indoor and outdoor environments. The benchmark evaluates nine distractor-free radiance field methods plus 3D Gaussian Splatting. A curated DF3DV-41 subset of 41 scenes covers challenging conditions, and a diffusion-based 2D enhancer is fine-tuned to improve radiance field quality.

Key results:

  • Average PSNR improvement from fine-tuned 2D enhancer: 0.96 dB on held-out sets
  • Average LPIPS improvement: 0.057 on evaluation datasets
  • Coverage: 1,048 scenes, 89,924 images, 128 distractor types, 161 scene themes

Why it matters / caveats: Provides the first large-scale benchmarking infrastructure for distractor-free novel view synthesis, enabling systematic evaluation across diverse conditions. Scope is bounded to consumer camera captures with specific distractor and scene categories; explicit quantitative comparison of individual radiance field methods is not detailed in the abstract.

Beyond Static Leaderboards: Predictive Validity for the Evaluation of LLM Agents →

arXiv 2606.19704 · ▲ 23 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Aggregate leaderboard scores for LLM agents fail to predict out-of-distribution performance, making it impossible for operators to reliably select systems based on benchmark rankings.

Method: The paper consolidates fourteen parallel implementation studies on AssetOpsBench, an MCP-based industrial benchmark, and proposes three falsifiable out-of-distribution criteria: Criterion A (held-out scenarios), Criterion B (cross-subset transfer across six industrial domains), and Criterion C (adversarial perturbation via paraphrasing, identifier renaming, and time-window shifting). A predictive validity ranking formula PV(c) = α·Ȳc − β·σ(Y_OOD) − γ·IQR(Y) combines mean performance with out-of-sample reliability metrics. A twelve-tier measurement apparatus is proposed covering infrastructure, multi-turn dialog, reasoning adaptivity, knowledge augmentation, and evidence grounding.

Key results:

  • Public-to-hidden ranking correlation for execution tasks: ρ = −0.13 (indistinguishable from zero)
  • Public-to-hidden ranking correlation for planning tasks: ρ = 0.69
  • Improvements across fourteen studies: 1.26× to 3500× against individual baselines
  • RAG vs. knowledge plugin: ~90% vs. 50–68% accuracy with 4.5–10× token inflation trade-off
  • Temporal semantic caching: 3.48× speedup; cache F1 ceiling at 0.64
  • Inter-rater reliability: Krippendorff α = 0.61 for LLM-as-judge vs. human α ∈ [0.74, 0.82]

Why it matters / caveats: Demonstrates empirically that current benchmarks cannot reliably predict deployment performance and proposes explicit falsification conditions for evaluation claims. All evidence derives from one industrial domain (asset operations), and the predictive validity formula has not undergone controlled large-scale testing.

FreeStyle: Free Control of Style-Content Dual-Reference Generation from Community LoRA Mining →

arXiv 2606.20506 · ▲ 22 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Style-content dual-reference image generation requires simultaneously preserving content fidelity, achieving style alignment, and preventing semantic leakage from the style reference — a challenge compounded by the lack of large-scale triplet datasets with clean content-style separation.

Method: FreeStyle leverages community LoRAs as compositional anchors to construct large-scale style-reference and content-reference triplet datasets across multiple base models via a rigorous generation and filtering pipeline. A two-stage curriculum applies stage-specific disentanglement: Stage 1 uses an attention-level enrichment constraint to suppress style-reference semantic leakage during style transfer; Stage 2 applies a frequency-aware RoPE modulation strategy targeting positional-correspondence-based leakage in the dual-reference stage. Evaluation introduces a style-invariant Content Alignment Score (CAS) and a calibrated VLM-based Rejection Score.

Key results:

  • Not stated.

Why it matters / caveats: Addresses a practical bottleneck in controllable generation by exploiting the large community LoRA ecosystem as free supervision, enabling scalable triplet data construction without manual annotation. Quantitative benchmark results were not available from the abstract at time of fetch.

JanusMesh: Fast and Zero-Shot 3D Visual Illusion Generation via Cross-Space Denoising →

arXiv 2606.20563 · ▲ 18 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Existing methods for generating a single 3D mesh that looks like different objects from different viewpoints either use slow optimization (oversaturated colors) or naive stitching that produces visible seams and semantic leakage across views.

Method: JanusMesh operates in two stages. Stage 1 uses dual-branch denoising within the TRELLIS framework: two independent branches conditioned on different text prompts denoise in parallel; at each step, latents are decoded to voxel space, CLIP-guided orientation alignment selects the optimal rotation angle, and an SDF blending step (averaging Signed Distance Fields) fuses the branches before re-encoding. Noise guidance uses either Noise Blending Guidance or Space Control Guidance. Stage 2 applies depth-conditioned ControlNet with Stable Diffusion to predict textures for each viewpoint and un-projects them to the mesh surface with cosine-weighted normal blending for seamless integration.

Key results:

  • GPT-based accuracy: 84% (JanusMesh) vs. 76% (Direct Concatenation) vs. 70% (Shape from Semantics)
  • FID: 185.56 vs. 187.89 vs. 194.14
  • Multi-object rate: 18% vs. 56% (lower is better)
  • Runtime: 3–5 minutes vs. ~40 minutes for optimization-based baseline (8× faster)
  • User study: 71% preferred JanusMesh; 91% found CLIP-guided orientation superior

Why it matters / caveats: Achieves zero-shot 3D visual illusion generation 8× faster than prior optimization methods with superior geometric coherence, extending multi-view illusions from 2D to fully textured 3D meshes. CLIP-guided orientation search struggles with three-object illusions and the system inherits TRELLIS failure cases for specific object categories.

FlowBender: Feedback-Aware Training for Self-Correcting Conditional Flows →

arXiv 2606.20404 · ▲ 16 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Conditional diffusion and flow models trained with static conditioning ignore alignment errors between generated outputs and their defining constraints at inference time, forcing a fidelity-plausibility trade-off that hand-tuned linear guidance cannot escape.

Method: FlowBender transforms generative sampling into a closed-loop system with a two-pass feedback mechanism. Pass 1 (look-ahead) runs the network with zero feedback signal to produce a clean signal estimate x̂₁. Pass 2 (refinement) feeds an error signal — first-order (gradient ∇ℒ(ℋ(x̂₁), y)), zero-order (measurement-space residual for non-differentiable operators), or hybrid — back into the network alongside standard inputs. A prior-step shortcut approximates feedback from cached previous predictions to maintain near-standard inference cost. Training uses joint optimization with a null feedback probability and stop-gradient operations on the look-ahead pass, and the framework integrates with ControlNet and LoRA adapters.

Key results:

  • Super-resolution (Stable Diffusion 3.5, 40 steps): PSNR 44.07 vs. 43.02 (IT Guidance), FID 6.45 vs. 18.96
  • Depth-to-RGB: MAE 0.0818 vs. 0.0866, FID 15.89 vs. 223.54
  • JPEG restoration: PSNR 28.86 vs. 26.29 (zero-order variant)
  • 3D mesh texturing (TRELLIS-2, 12 steps): M.PSNR 26.39 vs. 25.86, LPIPS 0.0140 vs. 0.0191, FID 6.64 vs. 9.10
  • 80% of correction energy lies orthogonal to gradient direction, confirming learned non-linear policy

Why it matters / caveats: Simultaneously improves both fidelity and perceptual quality, breaking the traditional guidance trade-off, and extends to non-differentiable operators via zero-order feedback. The two-pass inference approximately doubles computation compared to standard open-loop sampling without the prior-step shortcut, and the approach requires access to the forward operator during both training and inference.

ImageWAM: Do World Action Models Really Need Video Generation, or Just Image Editing? →

arXiv 2606.19531 · ▲ 11 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Video-generation-based World Action Models incur high computational cost because dense multi-frame future tokens allocate capacity to action-irrelevant temporal details, causing inference bottlenecks and accumulated errors in long-horizon imagination.

Method: ImageWAM replaces video generation with an image editing backbone (OmniGen2, FLUX.2, or Ovis-U1), predicting a single endpoint frame representing the task-specified visual transformation rather than a full video sequence. Intermediate transformer key-value (KV) caches from the image-editing denoising process are reused as conditioning context for downstream action prediction. The system is jointly optimized using an image editing loss (velocity prediction for future latent frames) and an action flow-matching loss (velocity prediction for action sequences), with frozen vision-language model components and trainable diffusion generation and action expert branches.

Key results:

  • RoboTwin 2.0 (clean/randomized): 93.20% / 93.56% success
  • LIBERO average: 98.4% success rate
  • LIBERO-Plus (FLUX.2 4B): 83.1% average across perturbations
  • Real-world manipulation (4 tasks): 84.5% average success
  • Inference latency: 263 ms vs. 1,081 ms for video-based baseline (4× reduction)
  • FLOPs: 9.72 vs. 63.65 TFLOPs (6× reduction)
  • Model size: ~760M parameters (OmniGen2-based) to 952M (FLUX.2 9B action head)

Why it matters / caveats: Demonstrates that single-frame image editing provides stronger instruction-to-visual-change alignment than video prediction while substantially reducing compute, achieving competitive or superior performance to video-generation WAMs. Gains are not uniform across all perturbation types, and scalability beyond 100 real-world demonstrations per task is unclear.

Current World Models Lack a Persistent State Core →

arXiv 2606.20545 · ▲ 9 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Video generation models maintain visually plausible frames but fail to preserve object state and spatial relations when the camera loses and then regains sight of a target — the attribution problem of viewpoint intervention.

Method: WRBench organizes evaluation into four layers: a Natural-25 prompt suite (25 scene families crossed with a 2×2 spatial displacement × state change event design), WRBenchLib (a toolkit unifying heterogeneous model interfaces), a six-dimensional diagnostic chain (requested-camera precision, prompt-camera alignment, visual integrity via DINOv2, visible spatial/state consistency via Qwen-3.5-9B VLM scoring, re-observation support, and re-observed spatial/state consistency), and human calibration via 2,547 annotations validating each dimension independently (AC1 scores 0.788–0.937).

Key results:

  • 23 models evaluated on 9,600 videos; 2,073 outputs with judgeable re-observation evidence
  • Visible and re-observed consistency correlate only moderately (r = 0.60–0.79)
  • Camera motion increases re-observation access from 13% to 40% without improving re-observed state
  • Scaling Wan 1.3B→14B: support rises 13.8%→18.2% but re-observed state falls 0.657→0.621
  • Geometry-cache paradigm (Gen3C): 73.0% re-observation support vs. 6.3% for prompt-only (Hailuo)
  • Re-observed state consistency remains ~0.62 across all paradigms

Why it matters / caveats: Reveals three decoupled failure modes — observable quality does not predict hidden-state evolution, in-place transformations are universally hard, and current architectures optimize "where" not "what." The evaluation is confined to 25 scripted scene families with VLM-based scoring, and no demonstrated solutions are provided.

ENPIRE: Agentic Robot Policy Self-Improvement in the Real World →

arXiv 2606.19980 · ▲ 7 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Physical robot learning requires heavy human supervision for data collection, evaluation, and algorithm adjustment, and existing coding agents designed for digital domains lack real-world environment interfaces for closed-loop hypothesis testing on robot hardware.

Method: ENPIRE decomposes physical autoresearch into two stages: Environment Construction (EN), where coding agents build reusable environment abstractions including hard safety constraints, automated binary-reward verification from minimal demonstrations, and automated environment reset; and Policy Improvement via Rollout and Evolution (PIRE), where a Policy Improvement module lets agents modify training code and explore methods (behavior cloning, RL, heuristics), and an Evolution module enables multi-agent decentralized collaboration via Git, testing hypotheses asynchronously across a fleet of bimanual YAM robots equipped with RealSense cameras and local RTX 5090 GPUs.

Key results:

  • Push-T: ~95% success in simulation within 2 hours
  • Fleet scaling: 1→8 robots reduces time to target performance from 1.5+ hours to ~40 minutes
  • GPT-5.5 (Codex) outperforms Claude Opus 4.7 on simplified Push-T
  • Introduces Mean Robot Utilization (MRU) and Mean Token Utilization (MTU) as resource metrics
  • Token costs grow super-linearly with fleet size

Why it matters / caveats: First system automating the complete research loop on physical robots without human intervention during policy improvement, demonstrating cross-task knowledge transfer and VLA-procedural code synergy discovered autonomously. Robot resources are underutilized during LLM response waiting, and the approach is currently limited to short-horizon manipulation tasks with clear binary success criteria.

FAPO: Fully Autonomous Prompt Optimization of Multi-Step LLM Pipelines →

arXiv 2606.19605 · ▲ 7 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Multi-step LLM pipelines fail through cross-stage interactions across retrieval, reasoning, and formatting, yet existing prompt optimization tools lack step-level failure inspection and structural pipeline modification capabilities.

Method: FAPO uses Claude Code as an orchestrator (separate from task models) with LangGraph representing pipelines as stateful graphs and three specialized agents: an optimization agent driving the loop, a step-attribution agent analyzing per-step failures and fix types, and a variant-reviewer agent validating proposals. The six-stage loop evaluates the current variant, attributes failures by step, proposes one scoped change (prompts first), reviews for compliance and safety, compares candidates on validation scores, and escalates to structural changes only when attribution indicates prompt edits are insufficient. Guardrails include split access controls, scope constraints from tenant playbooks, iteration memory logs, and variant immutability.

Key results:

  • Wins 15 of 18 model-benchmark comparisons vs. GEPA baseline
  • Mean gain: +14.1 percentage points
  • Largest improvements: HoVer (+24.78 to +48.56 pp) and IFBench (+19.84 to +38.95 pp)
  • Security tasks (CTIBench-RCM): +4.0 pp (GPT-5), +7.1 pp (Foundation-Sec-8B-Instruct)
  • AIME benchmark: GEPA outperforms FAPO across all models

Why it matters / caveats: Shows that pipeline-aware, evidence-grounded optimization with controlled structural escalation outperforms fixed-program prompt search on most tasks. AIME reveals limits on highly constrained mathematical reasoning, and higher variance in structural-change scenarios reflects path-dependent optimization trajectories.

Context-Aware RL for Agentic and Multimodal LLMs →

arXiv 2606.17053 · ▲ 7 on Hugging Face · HF page · PDF

Technical breakdown

Problem: LLMs frequently fail to ground their predictions in available contextual evidence — a phenomenon called context unawareness — manifesting as overlooking critical details in tool traces in agentic systems and missing subtle visual cues in multimodal settings.

Method: ContextRL augments standard GRPO reinforcement learning with a context-awareness auxiliary objective. Contrastive data construction creates pairs (C⁺, C⁻) where C⁺ supports the answer and C⁻ is a minimally perturbed but contradictory context: for agentic settings, 1,000 trajectory pairs are filtered from 66K candidates (1.5% retention); for multimodal settings, 7,000 image pairs are generated via generative editing (~35% retention) and similarity retrieval (~3.1% retention). A margin-based auxiliary loss with clipping trains models to select supporting over contradictory context, combined with the primary GRPO task loss. The approach is modality-agnostic, applying identically to trajectories and images via logit-level contrastive supervision.

Key results:

  • Agentic (5 tasks): Qwen3-8B +1.4% average; Klear-AgentForge-8B +2.2% on SWE-Bench Verified, +2.3% on Lite; OOD Needle-in-Haystack: +2.7%
  • Multimodal (12 benchmarks): Qwen2.5-VL-7B +2.0% average (vs. PAPO baseline +0.8%); Qwen3-VL-8B +1.6%
  • Data augmentation controls: supervised fine-tuning on contrastive data causes catastrophic failure in agentic setting (28.0%→6.4% resolve rate), isolating the training objective as the critical factor

Why it matters / caveats: Demonstrates that a single lightweight auxiliary objective improves both long-horizon agentic reasoning and multimodal understanding with OOD generalization, and proves data alone is insufficient without the right training objective. Absolute gains are modest (1–2 pp), aggressive filtering limits scalability, and experiments are restricted to models ≤30B parameters.

Thinking with Visual Grounding →

arXiv 2606.16122 · ▲ 7 on Hugging Face · HF page · PDF

Technical breakdown

Problem: VLM reasoning traces leave supporting image regions implicit, making them difficult to verify and supervise — spatial and counting tasks require linking reasoning steps to specific visual evidence.

Method: A four-stage pipeline synthesizes grounded reasoning data: Qwen3-VL-Plus generates correct thinking traces from image-question pairs; object extraction identifies visual objects needed for reasoning; a SAM3-based agentic grounding system with four tool actions iteratively refines high-fidelity masks; and supervision writing generates SFT data with box coordinates [x1,y1,x2,y2] or point coordinates [x,y]. Grounding-Aware RL then fine-tunes Gemma3-4B-IT using GRPO with a combined reward: answer correctness (weight 1.0), grounding quality via IoU for boxes or F1 for points (weight 0.5), and format rewards (weight 0.1 each). The dataset contains 19,909 reasoning traces with 107,613 grounding annotations over 72,381 distinct objects.

Key results:

  • TallyBench counting: 39.31% (point grounding) vs. 33.33% (Gemma3-4B-IT baseline)
  • CountQA: 11.65% vs. 9.87% baseline
  • Spatial reasoning (VSR-zeroshot): 68.08%, matching Gemma3-27B-IT (69.25%)
  • EmbSpatial: 59.93% vs. Gemma3-27B-IT 62.09%
  • Non-grounded thinking baseline exhibits "length collapse," dropping to 51.84%–4.79% on spatial tasks
  • Training required 400 H200 GPU hours

Why it matters / caveats: Shows that 4B models with grounded thinking can match 27B-scale models on spatial tasks, and that explicit visual grounding is essential for stable RL training — non-grounded thinking collapses. Point-mode grounding reward provides inconsistent downstream gains, and evaluation is primarily on related spatial/counting domains.

LedgerAgent: Structured State for Policy-Adherent Tool-Calling Agents →

arXiv 2606.20529 · ▲ 5 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Standard tool-calling agents embed task state implicitly in growing prompts, causing agents to retrieve correct facts but later ground decisions in stale information or make syntactically valid tool calls that violate domain policies depending on current state.

Method: LedgerAgent introduces two deterministic inference-time components requiring no additional LLM calls: a Schema-Anchored Ledger — a typed dictionary L:𝒫→𝒱 storing observed task state from successful read-tool returns at canonical paths, updated only from verified reads via an "observe-not-assume" rule; and a Policy Gate with 28 executable predicates evaluated against ledger state before any environment-changing call, returning Allow, Revise (with violated predicate as feedback), or Block. A pre-generation ledger rendering step makes current state easily accessible before each generation.

Key results:

  • Kimi-K2.5: +3.4 points pass¹, +5.6 points pass⁴
  • GLM-5: +4.7 points pass¹, +7.6 points pass⁴
  • MiniMax M2.5: +7.3 points pass¹, +8.3 points pass⁴
  • GPT-4.1: +12.2 points pass¹ (retail/airline)
  • GPT-5.2: +15.5 points pass¹
  • vs. IRMA baseline: +3.7 points pass¹, +7.4 points pass⁴ with 0% token overhead vs. 53.1% for IRMA
  • Error analysis: missed required actions account for 70.3% of remaining failures

Why it matters / caveats: Shifts policy enforcement from post-hoc correction to preventive architecture with no training cost and is model-agnostic across multiple backbone families. Restricted to structured domains with stable record schemas, and requires domain-level schema and predicate specification that cannot be induced automatically.

HumanScale: Egocentric Human Video Can Outperform Real-Robot Data for Embodied Pretraining →

arXiv 2606.20521 · ▲ 5 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Embodied foundation models are bottlenecked by the high cost, acquisition difficulty, and low behavioral diversity of teleoperated real-robot training data.

Method: A two-stage paradigm first pretrains embodied models on egocentric human video processed through a carefully designed filtering and labeling pipeline to develop diverse world representations, then fine-tunes using limited labeled real-robot data for action-space alignment. Systematic comparisons are conducted under fixed post-training and validation protocols between egocentric video and teleoperated robot trajectories as pretraining sources, with equivalent data volumes.

Key results:

  • 24% lower validation loss on real-robot action prediction when using egocentric pretraining vs. robot trajectories
  • 52.5% higher success rates on in-distribution real-robot task execution
  • 90% higher success rates on out-of-distribution real-robot task execution

Why it matters / caveats: Establishes egocentric video as a scalable, cost-effective alternative for embodied model pretraining that outperforms expensive robot data, potentially reshaping data collection priorities in robotics. Architectural specifics and generalization across diverse robot morphologies are not detailed in available materials.

Understanding the Behaviors of Environment-aware Information Retrieval →

arXiv 2606.16817 · ▲ 5 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Different retrieval backends (dense, sparse, embedding-based) require fundamentally different query formulation strategies for optimal performance, yet LLM-based RAG systems apply uniform query strategies regardless of the retriever.

Method: The framework formulates retriever-aware query adaptation as an RL problem using GRPO, training an LLM-based query rewriter policy optimized via nDCG@10 rewards across four retrievers (Qwen3-Embedding, all-MiniLM-L6-v2, Contriever, BM25). A branching rollout strategy (e.g., 4×4 instead of 16×1) addresses multi-turn training instability by providing Monte Carlo estimation for first-turn actions and reducing variance for second-turn credit assignment. A Retrieval Environment MMD (RE-MMD) metric decomposes query drift into semantic and structural components.

Key results:

  • In-distribution gains (RAGBench, Contriever): 45.5 → 56.3 nDCG@10 (+23.9%)
  • Out-of-distribution transfer (BEIR, Contriever): 28.84 → 34.98 nDCG@10 (+21.2%)
  • Domain-specific transfer (FinAgentBench, Qwen3): 9.10 → 10.81 nDCG@10 (+18.8%)
  • Structural drift (BM25 vs. Contriever RE-MMD): >20.0, an order of magnitude larger than semantic drift
  • 14B model discovered statement-style queries achieving nDCG@10 of 0.965 on specific tasks

Why it matters / caveats: Provides the first systematic analysis of retriever-aware query adaptation via RL, discovers novel query strategies exceeding expert-prescribed approaches, and quantifies non-transferability between retriever types. Restricted to text-only retrievers and single-modality documents; multi-turn evaluation limited to two-step trajectories.

Holo-World: Unified Camera, Object and Weather Control for Video World Model →

arXiv 2606.20083 · ▲ 4 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Existing video generation models cannot simultaneously and coherently control camera motion, object motion, and weather state in a unified framework from a single source image.

Method: Holo-World introduces HoloStateData, a state video dataset converting diverse videos into unified control samples for camera, object, and weather supervision. The architecture includes a Unified Scene Adapter that factorizes world preservation and weather transfer into distinct parameter subspaces using rendered backgrounds, geometry buffers, and object controls, and a Scene-Weather Decomposed CFG mechanism that guides scene and weather residuals separately to strengthen target weather effects without over-amplifying the full conditioning signal.

Key results:

  • Not stated.

Why it matters / caveats: Represents a first approach to unified control across camera, objects, and weather in a video world model, enabling source-to-state scene manipulation. No quantitative metrics or ablation studies were available at time of fetch.

The FID Lottery: Quantifying Hidden Randomness in Generative-Model Evaluation →

arXiv 2606.20536 · ▲ 3 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Single reported FID scores for generative models conflate model quality with seed-driven randomness, making sub-percent differences in scores unreliable for model comparison without knowing the noise floor.

Method: A two-axis panel design evaluates N training seeds × K sampling seeds per trained model on Scalable Interpolant Transformers (SiT) at four widths (S/2, B/2, L/2, XL/2) trained on class-conditional ImageNet 256×256 with conditional flow matching. GS-FID (Golden-Section Search FID) individually optimizes the classifier-free guidance scale per seed pair using ~14 evaluations per cell to convergence within tolerance 0.01. Single-source ablations isolate per-step flow-matching noise, weight initialization, and data ordering contributions across 24–25 runs each.

Key results:

  • Retraining moves FID 3.2× more (in Inception feature space) than redrawing samples from a fixed model
  • Between-seed σ = 0.438 (CoV ≈ 1.3%) vs. within-seed σ = 0.137 (CoV ≈ 0.4%)
  • Single FID spans 33.75→35.42 around mean 34.74
  • Source hierarchy: per-step flow-matching noise 77%, initialization 67%, data ordering 51% of baseline variance
  • CoV remains inside [0.74%, 2.06%] across all 76 cells regardless of model scale
  • Lucky seeds reach target FID 1.25×–2.0× faster depending on model size
  • GS-FID halves relative spread to CoV = 0.67% but reshuffles rankings (Spearman ρ = 0.73)

Why it matters / caveats: Establishes an empirically grounded noise floor (~1.3% CoV) for FID claims, showing that sub-2% gaps are inconclusive and recommends multi-seed training with GS-FID for reliable comparisons. Measurements are limited to SiT with flow matching on ImageNet 256×256 using Inception-V3 FID; generalization to other architectures and objectives remains open.

JAMER: Project-Level Code Framework Dataset and Benchmark on Professional Game Engines →

arXiv 2606.19830 · ▲ 3 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Project-level code engineering on professional game engines remains unexplored due to the absence of large-scale datasets and deterministic evaluation methods for assessing game behavior beyond syntactic correctness.

Method: JAMER sources 240,000 candidate repositories from Game Jam competitions (Ludum Dare, itch.io, Global Game Jam) using the Godot engine's text-based format (.tscn, .gd), filtering to 8,133 verified projects through a four-level deterministic pipeline: file integrity (L1), compilation correctness via headless compilation (L2), 30-second runtime stability (L3a), and runtime behavior collection via deterministic input strategies (L3b). Benchmark tasks include theme-driven from-scratch generation (Task 1) and multi-granularity code completion at function, script, and full-script levels (Task 2). Evaluation uses Structural Completeness Score (SCS, 7 structural dimensions) and Behavioral Alignment Score (BAS, 7 numeric dimensions plus signal-trigger overlap) alongside compilation pass rates.

Key results:

  • 8,133 verified projects; 300 manually-verified benchmark projects; 7,833 training projects; 40+ game genres
  • Task 1 (direct LLM): L3a runtime pass rates average 70.7% across 9 models; fine-tuned Qwen3.5-27B achieves 88.7% compilation and SCS of 0.34
  • Task 2a capability cliff: runtime pass rates drop from 80.4% (Small projects) to 5.7% (Large projects)
  • Code Agent improves L3a by ~30 pp but shows no corresponding SCS/BAS improvement
  • Real projects average 6.9 input-action abstractions; models generate 0 (fine-tuning raises this to 3.44)

Why it matters / caveats: First project-level game code dataset with deterministic evaluation, revealing a fundamental architectural design gap — models can compile code but cannot replicate real game engineering patterns. Restricted to the Godot engine, excluding Unity and Unreal, and focuses only on code frameworks without art or audio assets.

Freeing the Law with LOCUS: A Local Ordinance Corpus for the United States →

arXiv 2606.19334 · ▲ 3 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Local ordinances governing zoning, housing, licensing, and public health are fragmented across vendor platforms designed for human browsing rather than bulk research access, making them largely absent from machine-readable corpora despite their legal consequence.

Method: LOCUS collects 9,239 PDFs (~80 GB, 7M pages) from municipal and county codes via browser automation, processes them with LightOnOCR-2-1B (a 1B-parameter vision-language OCR model) to Markdown, and segments ordinances into individual laws. GPT-5.4-nano annotates 100,000 laws across substantivity, function, and topic dimensions; ModernBERT-base classifiers are trained on 80,000/10,000/10,000 train/val/test splits for efficient inference. Dimensional scoring (enforcement discretion, opacity, paternalism, problem salience) uses 200,000 pairwise LLM comparisons, TrueSkill Bayesian rating, and fine-tuned ModernBERT regression models.

Key results:

  • Corpus: 2,211,516 text chunks from 2,309 counties (94% of U.S. population coverage)
  • Dimensional scoring Pearson correlation between BERT predictions and TrueSkill scores: 0.82–0.94 across four dimensions
  • OCR cost: ~$0.30 per 1,000 pages using Modal batch inference
  • GPT-5.4 agreement with nano version: 64,977 of 108,889 challenging predictions
  • Discovery: Florida ordinances more than twice as opaque as any other state

Why it matters / caveats: Enables unprecedented national-scale computational analysis of local law structure and variation, revealing functional patterns (counties focus on zoning, cities on nuisance regulation) and geographic disparities in regulatory opacity. County-harmonized layer oversimplifies legal authority and does not determine the controlling jurisdiction for specific legal questions.

Adaptive Volumetric Mechanical Property Fields Invariant to Resolution →

arXiv 2606.18231 · ▲ 3 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Predicting spatially varying mechanical properties (Young's modulus, Poisson's ratio, density) of 3D objects for physics simulation is constrained by prior methods that operate at fixed low resolutions (64³), limiting accuracy for complex heterogeneous materials.

Method: AdaVoMP uses Sparse Adaptive Voxels (SAV) — adaptive hierarchical voxel trees where homogeneous regions use coarse voxels and heterogeneous regions subdivide finely — enabling efficient multi-resolution representation up to 1024³. A two-stage transformer architecture processes these: an Adaptive Geometry Transformer encoder applies sparse 3D shifted-window attention with RoPE positional encoding on aggregated DINOv3 features; an Adaptive Material Generator decoder autoregressively generates material trees coarse-to-fine, predicting three structure actions (Empty/Keep/Subdivide) and 2D material latents decoded via a frozen MatVAE. The largest model (Ours-H) has 0.6B parameters, trained on 32×A100-80GB GPUs for 5 days.

Key results:

  • Resolution: 1024³ vs. 64³ for VoMP (16× higher)
  • Young's modulus ALDE: 0.884 vs. VoMP 1.137
  • Poisson's ratio ALRE: 0.092 vs. VoMP 0.123
  • Density ADE: 158.5 kg/m³ vs. VoMP 191.6
  • Mass estimation (ABO-500): ALDE 0.457 vs. VoMP 0.631; ARE 0.512 vs. VoMP 0.887
  • Generated trees use only 9.14% of dense 64³ voxels (ground-truth: 7.24%)

Why it matters / caveats: Enables high-fidelity deformable simulation of complex objects at 16× higher resolution than prior art while maintaining memory efficiency via sparse adaptive representations. Cannot model truly anisotropic or directional materials, is designed for linear elasticity only, and may fail under distribution shift from training data.

LegalHalluLens: Typed Hallucination Auditing and Calibrated Multi-Agent Debate for Trustworthy Legal AI →

arXiv 2606.18021 · ▲ 3 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Aggregate hallucination rates (~52%) in legal AI systems conceal critical failure patterns: two models with identical aggregate scores can have opposite directional error profiles (fabricating vs. omitting obligations), making aggregate metrics insufficient for compliance-critical deployment decisions.

Method: LegalHalluLens introduces three components: Typed Hallucination Profiles stratifying errors across four claim categories (numeric, temporal, obligation/entitlement, factual) to reveal within-model gaps; a Risk Direction Index (RDI) computed as (extra_condition% − missing_condition%)/100 that operationalizes directional error bias using existing evaluation labels; and a Typed Debate Pipeline with six roles (Skeptic, Supporter, Re-extractor, Arbiter, Verifier, Judge) where Skeptic challenge and Add/Delete gate asymmetries are calibrated to measured per-category failure modes rather than generic debate.

Key results:

  • 249,252 clause-level instances evaluated; within-model typed gap: 38.0–40.6 percentage points
  • Obligation/numeric hallucination: 64.8–74.3% across all four models
  • Temporal hallucination: 29.0–35.1% (lowest category)
  • Two models with matched 52% aggregate rate show opposite RDIs: +0.161 vs. −0.202
  • Debate on 120-contract subset: false positives reduced 45% (524→287); obligation hallucination −6.3 pp
  • Gemma-4-26B-A4B (4B active parameters) with debate ranks first under composite scoring, matching commercial APIs

Why it matters / caveats: Operationalizes directional error bias into a deployment-comparable metric that aggregate accuracy cannot capture, enabling risk-aware model procurement. Results apply to 510 English-US commercial contracts (CUAD); generalization to other jurisdictions or document types is unverified, and all evaluation uses a single LLM judge.

Taylor-Calibrate: Principled Initialization for Hybrid Linear Attention Distillation →

arXiv 2606.16429 · ▲ 3 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Converting pretrained Transformers into hybrid models with Gated DeltaNet (GDN) linear attention layers by simply copying projection weights leaves the recurrent decay, write, and output-gating dynamics unspecified, forcing downstream distillation to waste tokens on initialization repair.

Method: Taylor-Calibrate applies a two-phase initialization. Phase 1 analytically derives GDN parameters from teacher attention statistics: average attention distance sets the decay timescale (half-life matching), entropy maps to write-gate strength, output amplitude sets value projection scaling via OLS, and the output gate is initialized small. Phase 2 runs brief layer-local distillation minimizing layer output mismatch on calibration data, updating both inherited and newly introduced parameters.

Key results:

  • Up to 88× improvement in worst-case perplexity in a representative ablation
  • 4.9×–9.2× fewer training tokens required to reach matched recovery targets vs. naive initialization
  • Qwen3-8B recovery (700M tokens): 70.0 Avg / 76.7 RULER (teacher: 70.7 / 94.0)
  • Llama-3.2-3B: 64.8 Avg / 63.4 RULER (teacher: 65.6 / 89.6)
  • Phase 1 alone insufficient (PPL ~22,470); Phase 2 reduces PPL from 2,015.9 to 424.1

Why it matters / caveats: Frames hybrid model transfer as a dynamical initialization problem and demonstrates that principled initialization substantially accelerates distillation. Restricted to Gated DeltaNet architecture, relies on heuristic calibration rules, and long-context retrieval recovery lags behind short-context metrics.

Selective Synergistic Learning for Video Object-Centric Learning →

arXiv 2606.15527 · ▲ 3 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Slot-based video object-centric learning methods exhibit misalignment between encoder attention maps (sharp but noisy at object boundaries) and decoder object maps (coherent interiors but blurry boundaries), and existing dense alignment approaches propagate both weaknesses while incurring quadratic memory complexity.

Method: SSync performs asymmetric cross-distillation by selectively using each module's reliable regions. Hard slot assignments (argmax) are derived from both encoder (A) and decoder (D) probability distributions. Local consistency analysis over 10 spatio-temporal neighbors (8 spatial + 2 temporal) identifies boundary patches (high disagreement in attention maps) and interior patches (low disagreement in decoder maps). Boundary supervision trains the decoder on encoder's sharp pseudo-labels; interior supervision trains the attention map on the decoder's coherent pseudo-labels. A transitive pseudo-label merging step detects over-fragmented slots by computing frame-averaged IoU and merging connected components above a slot-wise mean activation threshold. Complexity is linear O(T·H·W) vs. quadratic O((T·H·W)²) for prior SRL.

Key results:

  • MOVi-C: 79.4 FG-ARI / 39.5 mBO vs. SRL 74.3 / 34.5
  • MOVi-E: 84.0 FG-ARI / 34.8 mBO vs. SRL 81.9 / 29.3
  • Memory (T=4, Batch 32): SSync 27 GB vs. SRL 70 GB (~60% reduction)
  • Fragmentation (FCC8): SSync 8.79 vs. SRL 21.03 vs. SlotContrast 33.20
  • Boundary F-score: SSync 0.255 vs. SRL 0.222

Why it matters / caveats: Achieves superior object segmentation quality with 60% lower memory than SRL and linear rather than quadratic complexity, enabling higher resolutions and longer videos. Early-frame under-fragmentation occurs when objects enter from similar directions, and objects with high intra-part appearance variation (e.g., cargo trucks) can remain fragmented despite transitive merging.

Rethinking Shrinkage Bias in LLM FP4 Pretraining: Geometric Origin, Systemic Impact, and UFP4 Recipe →

arXiv 2606.20381 · ▲ 2 on Hugging Face · HF page · PDF

Technical breakdown

Problem: FP4 training with the E2M1 format (2 exponent, 1 mantissa bit) suffers from Shrinkage Bias — a systematic negative rounding error from geometric asymmetry in quantization bins — that accumulates multiplicatively across layers and is amplified by the Random Hadamard Transform used in NVIDIA's NVFP4 recipe.

Method: UFP4 replaces E2M1 with uniform E1M2/INT4-style grids that eliminate geometric asymmetry (symmetric rounding bins where ℓᵢ = rᵢ). RHT is applied to all three training GEMMs (forward, data-gradient, weight-gradient paths). Stochastic rounding is restricted to gradient tensors only. Block-wise quantization uses a 1×16 grid with FP32 single-level scales. Fused RHT+quantization kernels are implemented for SM90/SM100 hardware.

Key results:

  • Dense 1.5B BF16-relative loss degradation: 1.2570% (NVFP4) → 0.9673% (UFP4)
  • MoE 7.9B: 2.3596% → 1.8469%
  • MoE 124B: 1.7308% → 1.3863%
  • Scaling law validation: E1M2 advantage persists across 10M–324M parameter models
  • Fused kernel overhead: 1.06×–1.07× latency vs. standalone quantization on SM90/SM100

Why it matters / caveats: Identifies a fundamental format-level limitation in current FP4 training recipes and demonstrates that correcting grid geometry improves training quality across model scales up to 124B parameters. Residual gap to BF16 remains, and requires hardware support for uniform FP4 formats that current accelerators do not natively provide.

LooseControlVideo: Directorial Video Control using Spatial Blocking →

arXiv 2606.19495 · ▲ 2 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Text-to-video generation lacks intuitive high-level spatial control for multi-object scenes — natural language is imprecise for motion trajectories while dense per-frame guidance is labor-intensive for dynamic deformable objects.

Method: LooseControlVideo uses sparse, oriented 3D bounding boxes as "blocking" proxies inspired by cinematographic practices, letting users specify high-level layouts and motion paths while the model infers deformations and dynamics. The DNOCS representation encodes local orientation via normalized object coordinates (NOCS) mapped to RGB hue, with global depth ordering via brightness modulation, jointly encoding 3D size, orientation, and depth-ordered occlusions in a single 3-channel signal. The architecture fine-tunes the WAN 2.2 DiT backbone using ControlNet-style VACE conditioning with LoRA (rank 64). A training pipeline automatically extracts 3D boxes from ~10K videos using GroundingDINO, SAM segmentation, monocular depth estimation, and 3D Kalman filtering.

Key results:

  • nuScenes: Trajectory Error 5.79 px vs. 6.78 (2D flow), Occlusion Accuracy 92.69% vs. 79.32%, RMC 0.318 vs. 0.528
  • HO-3D: Trajectory Error 3.9 px vs. 5.4, Occlusion Accuracy 94.1% vs. 84.2%, RMC 0.122 vs. 0.192
  • BEHAVE: Trajectory Error 5.8 px vs. 7.6, Occlusion Accuracy 90.2% vs. 78.5%
  • User study: LCV preferred in 92.2% vs. 2D boxes, 87.5% vs. optical flow, 78.1% vs. depth-only

Why it matters / caveats: Demonstrates that sparse 3D primitives outperform dense 2D signals for video control while remaining author-friendly, decoupling high-level choreography from fine-grained deformation. Lacks explicit visual identity-to-box binding, making multi-character scenes ambiguous, and requires manual timing specification.

The Data Manifold under the Microscope →

arXiv 2606.15760 · ▲ 2 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Manifold-fitting theoretical bounds depend on geometric quantities like curvature, reach, and intrinsic dimension that remain unobservable in real datasets, preventing empirical validation of these guarantees.

Method: A controlled testbed constructs low-dimensional image families (adapted dSprites, 4D; COIL-20, 3D) with systematic transformation parameters on dense grids, enabling finite-difference estimators that compute curvature, reach, and volume at near-ground-truth accuracy using central differences achieving O(h²) accuracy for derivatives. Manifold Moving Least Squares (MMLS) and β-VAE are evaluated as manifold fitting methods. Theoretical rates from Genovese et al. (2012) and Fefferman et al. (2018) are compared empirically against observed fitting error decay.

Key results:

  • Finite-difference curvature estimation substantially outperforms Sritharan et al. (2021) across S², S³, S⁴, H₂², T² for sample sizes 2,000–20,000
  • Fefferman's linear-fit exponent (1/d) empirically closer to observed MMLS decay than Genovese's dimension-dependent minimax rate
  • β-VAE layer-wise analysis: curvature systematically increases in deeper layers; reach decreases toward self-intersections
  • Supported intrinsic dimension: d ≤ 4–5 (computational limit)

Why it matters / caveats: Provides the first empirical validation showing Fefferman bounds' exponent more predictive than Genovese's minimax rates for practical linear fitting, and offers a reproducible testbed for calibrating manifold learning theory. Restricted to intrinsic dimension d ≤ 4–5 and simple topologies; framework is a calibration testbed rather than a tool for analyzing arbitrary real-world datasets.

Duration Aware Scheduling for ASR Serving Under Workload Drift →

arXiv 2603.11273 · ▲ 2 on Hugging Face · HF page · PDF

Technical breakdown

Problem: ASR serving systems using first-come-first-served scheduling suffer head-of-line blocking when audio durations vary, increasing end-to-end latency without improving throughput.

Method: Audio duration is used as a zero-overhead scheduling signal because it strongly linearly correlates with Whisper encoder-decoder processing time (output tokens ≈ duration × κ). Two scheduling algorithms are integrated into vLLM in ~250 lines across five files: Shortest Job First (SJF) using a min-heap (O(log n) complexity) to prioritize shorter requests; and Highest Response Ratio Next (HRRN) balancing wait time and job duration via response ratio = (waiting time + estimated job time) / estimated job time to mitigate starvation. Scheduling overhead is <0.1 ms per request.

Key results:

  • SJF: reduces median E2E latency by up to 73% at 25 req/s (LibriSpeech)
  • SJF: reduces median TTFT by up to 93% at high load
  • HRRN: 28% median latency improvement while limiting 90th-percentile tail degradation to 24%
  • SJF 90th-percentile tail latency increases 97% due to starvation (HRRN recommended for production)
  • Synthetic uniform distribution: SJF maintains 67% median E2E latency reduction at 25 req/s
  • All policies achieve identical request throughput

Why it matters / caveats: Demonstrates a zero-overhead scheduling signal that outperforms approaches requiring auxiliary predictors, with results generalizing across languages and model sizes. SJF introduces severe tail-latency penalties making HRRN recommended for production; evaluation is limited to single-GPU A100 and fixed κ per language.

Configurable Clinical Information Extraction with Agentic RAG →

arXiv 2606.19602 · ▲ 1 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Clinical workflows require extracting structured data from heterogeneous patient records spanning hundreds of documents, but standard RAG fails because document metadata is sparse and unreliable, temporal reasoning across records is complex, and cross-document dependencies exist.

Method: ACIE deploys an agentic RAG pipeline on-premise at University Medicine Essen using Qwen 3.6 35B-A3B (mixture-of-experts on 4×H100 GPUs) and PaddleOCR-VL 1.5 for document processing. Clinicians configure extraction targets through typed schemas without developer involvement. A tool-calling agent iteratively searches patient contexts using semantic similarity, document listing with query-relevant summaries, detailed document inspection, and structured data queries. Length-penalized retrieval scoring s = sim(q,c) · p(ℓ) corrects dense retriever bias toward short fragments. Extraction uses Markdown serialization and grounds every value to source passages for clinician verification.

Key results:

  • 96.5% overall acceptance rate (7,073/7,326 values) on 99 lymphoma patients
  • By type: Categorical 98.6%, Numerical 98.3%, Boolean 98.6%, Free-text 96.0%, Dates 84.3%, Tabular 79.8%
  • Zero hallucinations (no unsupported content)
  • 56.5% of documents have timestamps outside encounter period (median deviation: 14 days)
  • Only 58.8% agreement between FHIR metadata timestamps and clinically-extracted dates
  • 10 fields account for 182/253 rejections (concentrated errors)
  • Extraction reduces clinician time by approximately threefold per patient

Why it matters / caveats: First quantification of metadata quality gaps in a large deployed FHIR repository (~2 billion resources), and demonstrates clinician-verified extraction with zero hallucinations on a privacy-sensitive on-premise system. Limited to a single hospital, single disease area, and 99 patients; no comparison against non-agentic baselines.

No Resource, No Benchmarks, No Problem? Evaluating LLMs for Code Generation in No-Resource Languages →

arXiv 2606.16827 · ▲ 1 on Hugging Face · HF page · PDF

Technical breakdown

Problem: LLMs achieve strong code generation for high-resource languages like Python but show near-zero performance on no-resource languages (those with virtually no training data representation), yet no systematic study of this regime or cost-effective specialization techniques exists.

Method: HumanEval (154 tasks), MBPP (355 tasks), and McEval-Hard (227 tasks) are translated into Gleam and MoonBit as no-resource language benchmarks, with two-step leakage prevention (function-name matching and 8-gram extraction). Four specialization techniques are evaluated on Qwen 2.5/3 Coder (8B–32B) and GPT-4o/o3-mini: 5-shot prompting and RAG (in-context learning), LoRA-based instruction fine-tuning on function-docstring pairs, further pre-training on raw code (28.3M tokens Gleam, 13.7M MoonBit), and instruction transferring via weight-diff transfer from instruct to pre-trained base models.

Key results:

  • No-resource baseline: 0–1% Pass@1 on McEval-Hard (vs. 27–84% low-resource, 59–97% high-resource)
  • Further pre-training: ~15% Pass@1 on no-resource McEval-Hard
  • Fine-tuning: 3–11% Pass@1
  • Pre-training + instruction transfer: 22–56% Pass@1 on HumanEval, +12% over pre-training alone
  • Qwen3-8B with instruction transfer outperforms Qwen3-32B instruct by up to 28%
  • Pre-training reduces syntactic error rate from 66–90% to <20%

Why it matters / caveats: First systematic study of no-resource language code generation, showing that smaller models with weight-diff instruction transfer can rival models 4× larger, providing a practical pathway for organizations with proprietary domain-specific languages. Only two no-resource languages are studied, and function-level tasks may not reflect domain-specific usage patterns.

ReSyn: A Generalized Recursive Regular Expression Synthesis Framework →

arXiv 2603.24624 · HF page · PDF

Technical breakdown

Problem: Neural regex synthesizers trained on simplified benchmarks fail on real-world patterns that have over 2× more AST nodes than simplified versions and 3.6× more than synthetic benchmarks, because they flatten hierarchical Union structures into sequences.

Method: ReSyn is a three-stage framework totaling 29.6M parameters: a Regex Canonicalizer standardizes expressions via AST optimization and literal anonymization; a Set2Regex Base Synthesizer (10M parameters) uses a Hierarchical Set Encoder with character-level Transformer + Pooling by Multihead Attention (PMA), a string-level Transformer with type embeddings, and a dual-attention decoder ensuring permutation invariance; and a ReSyn Recursive Framework with three learnable neural modules — a Router (4.6M parameters) predicting decomposition strategy (Synthesize/Partition/Segment), a Partitioner (7.5M) using Pointer Networks for Union decomposition, and a Segmenter (7.5M) for character-level Concatenation splitting.

Key results:

  • RegExLib (real-world benchmark): ReSyn 68.26% success rate, 41.61% semantic accuracy vs. Prax baseline 42.24% (+25.5 pp absolute)
  • With beam search (k=500): 85.33% success vs. GPT-5 90.07%, with superior semantic accuracy (50.29% vs. 48.86%)
  • ReSyn is 4,000× smaller in parameters than GPT-class models
  • Non-recursive methods collapse beyond AST depth 4; ReSyn maintains performance at depths 5–6+
  • NP-completeness of the Concise Regex Problem proven via reduction from Shortest Common Supersequence

Why it matters / caveats: First quantitative demonstration of the benchmark-reality gap in regex synthesis, and shows a principled recursive decomposition at 30M parameters approaching GPT-scale performance on real-world patterns. MCC evaluation metric can incorrectly penalize structurally correct regexes when negative examples lack edge cases, and semantic hard-negative mining is identified as future work.

← 2026-06-182026-06-192026-06-22 →