Ground Truth.
AI, checked against the source.

AI papers — 2026-05-09

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-05-082026-05-092026-05-10 →
Jump to one of 19 papers
  1. Beyond Semantic Similarity: Rethinking Retrieval for Agentic Search via Direct Corpus Interaction
  2. RaguTeam at SemEval-2026 Task 8: Meno and Friends in a Judge-Orchestrated LLM Ensemble for Faithful Multi-Turn Response Generation
  3. When to Trust Imagination: Adaptive Action Execution for World Action Models
  4. Audio-Visual Intelligence in Large Foundation Models
  5. StraTA: Incentivizing Agentic Reinforcement Learning with Strategic Trajectory Abstraction
  6. RemoteZero: Geospatial Reasoning with Zero Human Annotations
  7. EMO: Pretraining Mixture of Experts for Emergent Modularity
  8. Prescriptive Scaling Laws for Data Constrained Training
  9. The Scaling Properties of Implicit Deductive Reasoning in Transformers
  10. KernelBench-X: A Comprehensive Benchmark for Evaluating LLM-Generated GPU Kernels
  11. Balanced Aggregation: Understanding and Fixing Aggregation Bias in GRPO
  12. PianoCoRe: Combined and Refined Piano MIDI Dataset
  13. GeoStack: A Framework for Quasi-Abelian Knowledge Composition in VLMs
  14. Generative Quantum-inspired Kolmogorov-Arnold Eigensolver
  15. TIDE: Every Layer Knows the Token Beneath the Context
  16. When No Benchmark Exists: Validating Comparative LLM Safety Scoring Without Ground-Truth Labels
  17. Sparkle: Realizing Lively Instruction-Guided Video Background Replacement via Decoupled Guidance
  18. BioTool: A Comprehensive Tool-Calling Dataset for Enhancing Biomedical Capabilities of Large Language Models
  19. EDU-CIRCUIT-HW: Evaluating Multimodal Large Language Models on Real-World University-Level STEM Student Handwritten Solutions

Beyond Semantic Similarity: Rethinking Retrieval for Agentic Search via Direct Corpus Interaction →

arXiv 2605.05242 · ▲ 62 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Standard retrieval-augmented search systems compress corpus access into a single top-k semantic similarity step, which fails for queries requiring exact lexical constraints, sparse clue conjunctions, local context checks, and multi-step hypothesis refinement.

Method: The paper proposes Direct Corpus Interaction (DCI), which enables LLM agents to search raw corpora using general-purpose terminal tools — grep, file reads, and shell scripts — instead of embedding models, vector indices, or retrieval APIs. DCI requires no offline indexing and adapts to evolving corpora. It is evaluated on BRIGHT, BEIR, and BrowseComp-Plus benchmarks against strong sparse, dense, and reranking baselines.

Key results:

  • Outperforms strong sparse, dense, and reranking baselines on several BRIGHT and BEIR datasets (specific nDCG figures not available in accessible paper versions at time of retrieval)
  • Achieves strong accuracy on BrowseComp-Plus and multi-hop QA without conventional semantic retrievers

Why it matters / caveats: DCI demonstrates that retrieval quality for LLM agents depends critically on the interface design — not just reasoning capability — opening a broader design space for agentic search. Exact numeric margins over baselines were not extractable from available paper versions, limiting quantitative comparison.

RaguTeam at SemEval-2026 Task 8: Meno and Friends in a Judge-Orchestrated LLM Ensemble for Faithful Multi-Turn Response Generation →

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

Technical breakdown

Problem: Generating faithful, grounded multi-turn responses from reference passages in the MTRAGEval benchmark (SemEval-2026 Task 8, Task B) requires handling diverse query types that no single LLM handles uniformly well.

Method: The system combines seven LLMs with two prompting variants each in a heterogeneous ensemble, with GPT-4o-mini serving as a judge to select the best candidate response per instance. The ensemble includes Meno-Lite-0.1, a 7B domain-adapted model designed for a cost-performance trade-off. Diversity across model families, scales, and prompting strategies is the core design principle.

Key results:

  • 1st place out of 26 teams in SemEval-2026 Task 8
  • Conditioned harmonic mean score: 0.7827
  • Outperformed the gpt-oss-120b baseline (0.6390) by ~22%
  • Ensemble consistently outperformed any single model in ablations

Why it matters / caveats: Demonstrates that judge-orchestrated heterogeneous ensembles can substantially outperform even very large single models on grounded multi-turn generation. The authors highlight annotation limitations in the MTRAGEval benchmark itself, and the approach has inference-time cost proportional to the number of ensemble members.

When to Trust Imagination: Adaptive Action Execution for World Action Models →

arXiv 2605.06222 · ▲ 36 on Hugging Face · HF page · PDF

Technical breakdown

Problem: World Action Models (WAMs) for robotic manipulation execute fixed-length action chunks after inference, making robots blind to whether their imagined future remains consistent with actual physical rollout — causing failures in contact-rich or unpredictable scenarios.

Method: The paper proposes Future Forward Dynamics Causal Attention (FFDC), a lightweight verifier that jointly reasons over predicted future actions, predicted visual dynamics, real observations, and language instructions to decide whether to continue executing the current chunk or replan. Mixture-of-Horizon Training is additionally introduced to improve trajectory coverage at multiple planning horizons. The system is evaluated on the RoboTwin benchmark and real-world experiments with an Astribot S1 robot.

Key results:

  • RoboTwin hard tasks (random setting): success rate 54.20% → 76.40%
  • RoboTwin: 69.10% reduction in forward passes; 34.02% reduction in execution time
  • Average model inference calls per task: 5.47 → 1.69
  • Real-world pick-and-place (Astribot S1): 45% → 80% success rate (+35 pp)

Why it matters / caveats: FFDC achieves a meaningful robustness-efficiency trade-off by enabling adaptive action chunk sizes based on prediction-observation consistency. Evaluation covers only the RoboTwin simulator and two pick-and-place task types; generalization to broader manipulation repertoires remains undemonstrated.

Audio-Visual Intelligence in Large Foundation Models →

arXiv 2605.04045 · ▲ 24 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Audio-Visual Intelligence (AVI) research is fragmented across diverse tasks, inconsistent taxonomies, and heterogeneous evaluation practices, impeding systematic comparison and progress tracking across the field.

Method: This survey establishes a unified taxonomy of AVI tasks covering understanding (speech recognition, sound localization), generation (audio-driven video synthesis, video-to-audio conversion), and interaction (dialogue, embodied/agentic interfaces). Foundational methodologies reviewed include modality tokenization, cross-modal fusion, autoregressive and diffusion-based generation, large-scale pretraining, instruction alignment, and preference optimization across large foundation models.

Key results:

  • Not stated (survey paper; no new empirical results reported)

Why it matters / caveats: Described as the first comprehensive review of AVI through the lens of large foundation models, providing a coherent framework for a rapidly expanding field. Open challenges highlighted include cross-modal synchronization, spatial reasoning, controllability, and safety in multimodal generation.

StraTA: Incentivizing Agentic Reinforcement Learning with Strategic Trajectory Abstraction →

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

Technical breakdown

Problem: Current RL methods for training LLM agents are largely reactive and struggle with long-horizon decision-making due to weak exploration and poor credit assignment over extended trajectories.

Method: Strategic Trajectory Abstraction (StraTA) introduces a two-level hierarchy: a compact strategy is sampled from the initial task state and subsequent actions are conditioned on that strategy. Training uses a hierarchical GRPO-style rollout design for joint optimization of strategy generation and action execution, enhanced by diverse strategy rollouts and a critical self-judgment mechanism. Evaluated on ALFWorld, WebShop, and SciWorld environments.

Key results:

  • ALFWorld: 93.1% success rate
  • WebShop: 84.2% success rate
  • SciWorld: 63.5% overall score, reported as outperforming frontier closed-source models
  • Improvements in both sample efficiency and final performance vs. reactive baselines

Why it matters / caveats: StraTA introduces explicit trajectory-level strategy planning to agentic RL, addressing a fundamental limitation of purely reactive approaches. Evaluation covers only three environments; generalization to other agentic domains (e.g., software engineering, tool use) remains undemonstrated.

RemoteZero: Geospatial Reasoning with Zero Human Annotations →

arXiv 2605.04451 · ▲ 6 on Hugging Face · HF page · PDF

Technical breakdown

Problem: Geospatial reasoning models still depend on human-annotated ground-truth bounding box coordinates for training supervision, preventing autonomous learning from unlabeled remote sensing data.

Method: RemoteZero is a box-supervision-free framework that exploits an asymmetry in MLLMs to replace geometric supervision with intrinsic semantic verification signals, enabling GRPO training without any box annotations. The model supports iterative self-evolution in which it improves through its own verification outputs. Evaluated on the EarthReason benchmark against supervised baseline RemoteReasoner and zero-shot MLLMs including Qwen2.5-VL-7B, DeepSeek-VL2, InternVL3.5, VLM-R1, and GeoChat.

Key results:

  • EarthReason Test Accuracy@0.5 (self-evolution): 71.29% vs. 68.11% for fully supervised RemoteReasoner (+3.18 pp)
  • EarthReason Test gIoU (self-evolution): 61.70%
  • Substantially outperforms zero-shot MLLMs: Qwen2.5-VL-7B (45.82%), VLM-R1 (33.31%), GeoChat (8.89%)

Why it matters / caveats: RemoteZero surpasses a fully supervised baseline without any human box annotations, demonstrating the viability of self-verifying training for remote sensing localization. Results are on a single benchmark (EarthReason); generalization to other geospatial datasets and task types is not yet established.

EMO: Pretraining Mixture of Experts for Emergent Modularity →

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

Technical breakdown

Problem: Standard Mixture-of-Experts (MoE) models cannot restrict inference to a domain-specific expert subset without severe performance degradation (>10% absolute), limiting memory-efficient deployment.

Method: EMO applies a document-level routing constraint at pretraining: all tokens within the same document must select from a shared expert pool, while different documents can use different pools, encouraging semantic expert specialization without human-defined groupings. EMO is a 1B-active / 14B-total parameter model pretrained on 1 trillion tokens, compared to a standard MoE baseline of equivalent size.

Key results:

  • Full model performance matches standard MoE baseline (e.g., MMLU 42.8 vs. 42.4)
  • At 25% expert retention (32 of 128 experts): ~1% absolute performance drop (vs. >10% for standard MoE)
  • At 12.5% expert retention (16 experts): ~3% absolute performance drop
  • Expert subsets of EMO outperform memory-matched models trained from scratch on the same compute budget

Why it matters / caveats: EMO enables practical modular deployment of sparse models, allowing domain-specific expert subsets to run in memory-constrained settings. The evaluated model is only 1B active parameters; whether document-level routing generalizes to larger active-parameter counts or different training regimes is not yet shown.

Prescriptive Scaling Laws for Data Constrained Training →

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

Technical breakdown

Problem: The Chinchilla scaling law assumes all training tokens are unique, making it inapplicable to data-constrained regimes where high epoch counts and repeated data are necessary.

Method: The paper proposes a four-parameter scaling law incorporating a simple additive overfitting penalty to model excess loss under data repetition, extending Chinchilla to data-constrained settings. Over 300 models spanning 15M–1B parameters, 50M–6B unique tokens, two weight decay strengths (standard vs. λ=1.0), and up to 16 training epochs are used to fit and validate the law on language modeling tasks.

Key results:

  • Scaling law fit: R² = 0.9971 (vs. ~0.79 for prior effective-parameter methods)
  • Strong weight decay (λ=1.0) reduces the overfitting coefficient by ~70%
  • At C=3×10¹⁹ FLOPs, 500M unique tokens: strong weight decay → 16.65 vs. 18.16 perplexity (−1.51 ppl); OLMES BPB 1.30 vs. 1.35
  • Overfitting penalty grows superlinearly with repeated epochs (fitted exponent δ > 1.0)

Why it matters / caveats: Provides actionable prescriptions for compute-optimal allocation and hyperparameter tuning under data constraints — in particular, that optimal weight decay is an order of magnitude larger than standard practice. Experiments are limited to models up to 1B parameters; extrapolation to frontier-scale models and non-English or domain-specific corpora is not validated.

The Scaling Properties of Implicit Deductive Reasoning in Transformers →

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

Technical breakdown

Problem: It is unclear whether and how Transformers can perform implicit deductive reasoning over Horn clauses without explicit intermediate steps, and how this capability scales with model depth.

Method: Depth-bounded Transformers with bidirectional prefix masking are trained on synthetic deductive reasoning tasks over Horn clauses, with systematic decorrelation of provability from spurious features and enforcement of algorithmic alignment. Experiments vary depth from L=8 to L=128 layers (d_model=256, H=4 heads) and include Universal Transformers (weight-tied, K=8 iterations). Datasets have up to N_pred=60 predicates and logical depth δ=12 with Chain-of-Thought (CoT) as the explicit reasoning baseline.

Key results:

  • Corrective objective improves performance by 18.9 ± 8.4 pp on LP dataset (δ≤6, direct mode)
  • Bidirectional mask adds 8.4 ± 7.1 pp improvement
  • Out-of-distribution (δ=6–12): corrective objective gives 5.3 ± 4.6 pp
  • Universal Transformer + FFN: 6.8 ± 3.5 pp improvement for N_pred≤60
  • Increasing depth closes the gap between implicit and explicit CoT performance within training distribution

Why it matters / caveats: Demonstrates that Transformers can learn implicit logical reasoning approaching explicit CoT performance when depth and training are properly configured. CoT remains necessary for out-of-distribution depth extrapolation, and results are confined to synthetic Horn clause reasoning tasks.

KernelBench-X: A Comprehensive Benchmark for Evaluating LLM-Generated GPU Kernels →

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

Technical breakdown

Problem: Existing evaluations of LLM-based GPU kernel generation lack systematic analysis of where and why semantic correctness and hardware efficiency break down across different operator types.

Method: KernelBench-X is a category-aware benchmark with 176 tasks across 15 structured categories (Activation, Math, Reduce, Pooling, Normalization, MatrixMultiply, LinearAlgebra, Convolution, Index, SpatialOps, Fusion, Loss, Optimizer, Random, Quantization). Five LLM-based methods are compared: AutoTriton (SFT+RL), GEAK (DeepSeek-V3.2-Chat, agentic), KernelAgent (DeepSeek-V3.2-Chat, multi-agent), Claude (single-pass), and DeepSeek-Coder (zero-shot).

Key results:

  • Task category explains 9.4% of correctness variance vs. 3.3% for method choice
  • Fusion tasks: 72% fail across all five methods; Quantization: 0/30 successes despite compilation
  • Compilation rates: 52.3% → 68.8% across iterative GEAK refinement; speedup declines 1.58× → 1.44×
  • 46.6% of semantically correct kernels are slower than the PyTorch baseline
  • Cross-hardware speedup variance reaches 21.4×

Why it matters / caveats: Reveals that task structure is a stronger predictor of LLM kernel generation success than algorithm design, and that semantic correctness does not imply efficiency. The benchmark covers Triton-targeted kernels; generalization to CUDA or other backends is not assessed.

Balanced Aggregation: Understanding and Fixing Aggregation Bias in GRPO →

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

Technical breakdown

Problem: GRPO-style reinforcement learning for LLMs introduces systematic optimization biases depending on how token-level policy gradient terms are aggregated: token aggregation creates sign-length coupling, while sequence aggregation implicitly downweights longer responses.

Method: Balanced Aggregation (BA) is a drop-in replacement for standard GRPO aggregation that computes token-level means separately within positive and negative response subsets, then combines them with sequence-count-based weights. Evaluated on Qwen2.5-Math-7B and Qwen3-1.7B models trained on DAPO-17k and Polaris datasets, assessed across Math-500, AIME 2024, AIME 2025, OlympicBench, Minerva-MATH, and LivecodeBench.

Key results:

  • Qwen2.5-Math-7B / DAPO-17k, Peak Accuracy@8: Token 0.3595, Seq 0.3578, BA 0.3634
  • Qwen3-1.7B / DAPO-17k, Last-Step Accuracy@8: Token 0.4360, Seq 0.4481, BA 0.4695
  • Qwen3-1.7B / Polaris, Last-Step Accuracy@8: Token 0.4349, Seq 0.4614, BA 0.4640
  • BA consistently ranks best or highly competitive across all model/dataset combinations

Why it matters / caveats: Identifies aggregation strategy as a critical but overlooked design dimension in GRPO-style RLVR, with a simple fix that provides consistent gains. Improvements are modest in absolute terms (~1–3 points) and the analysis is limited to math and coding tasks with two model families.

PianoCoRe: Combined and Refined Piano MIDI Dataset →

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

Technical breakdown

Problem: Existing symbolic music datasets cover a narrow range of composers, lack performance variety, omit note-level alignments, or use inconsistent naming formats, limiting expressive piano performance modeling research.

Method: PianoCoRe is built via two custom tools: a MIDI Quality Classifier (detecting corrupted and score-like transcriptions) and RAScoP, an alignment refinement pipeline eliminating temporal alignment errors and interpolating missing notes. The dataset has a tiered structure: PianoCoRe-C (large-scale), PianoCoRe-B (deduplicated), and PianoCoRe-A/A* (note-aligned performance subsets with ≥85% alignment recall). A performance rendering model is trained and evaluated across tiers.

Key results:

  • 250,046 performances of 5,625 pieces by 483 composers; 21,763 hours total
  • MIDI Quality Classifier macro F1: 89.1% (Score 100.0%, Corrupted 94.6%, High Quality 83.9%)
  • RAScoP alignment recall drop: only 1.5% (93.5% → 92.0%); 86.6% of sequences retain >85% alignment
  • Continuation task: Velocity MAE 8.613 MIDI bins, TimeShift MAE 0.016 s; inter-onset Pearson r = 0.86 ± 0.11
  • Larger, refined training subsets consistently outperform smaller/unrefined subsets

Why it matters / caveats: PianoCoRe is the largest open-source score-aligned piano performance dataset to date, with robust quality filtering and alignment tooling. The dataset and tools are restricted to piano; generalization to other instruments or genres is not addressed.

GeoStack: A Framework for Quasi-Abelian Knowledge Composition in VLMs →

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

Technical breakdown

Problem: Composing independently trained domain-expert adapters in Vision-Language Models (VLMs) leads to catastrophic forgetting when multiple adapters are merged into a unified model.

Method: GeoStack (Geometric Stacking) applies geometric and structural constraints to the adapter manifold, enabling composition of independently trained domain experts without human-defined merging recipes. A weight-folding property ensures O(1) inference complexity regardless of the number of composed experts. Evaluated against BiCLIP and Task Arithmetic baselines on multi-domain CLIP adapter adaptation and class-incremental learning (CIFAR-100, up to 10 tasks).

Key results:

  • Multi-domain adaptation (hard stack): GeoStack 74.4% vs. BiCLIP 72.6% average accuracy; orthogonality error 0.013 vs. 0.070
  • Class-incremental (CIFAR-100, 4 tasks): GeoStack 69.47% global accuracy (+9.39 pp over BiCLIP)
  • Task-0 retention (4 tasks): 75.80% (2.12% decay) vs. BiCLIP 60.08% (14.16% decay)
  • Deep stacking (10 tasks): Task-0 retention 56.00% vs. 21.50% (BiCLIP); ImageNet knowledge 57.2% vs. 37.8%

Why it matters / caveats: GeoStack significantly reduces catastrophic forgetting in continual multi-domain VLM adaptation with constant inference cost. Experiments focus on CLIP-based adapters; performance on larger foundation models and more diverse domain shifts is not yet demonstrated.

Generative Quantum-inspired Kolmogorov-Arnold Eigensolver →

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

Technical breakdown

Problem: GPT-style generative quantum eigensolvers (GQE) use parameter-heavy feed-forward networks, creating unnecessary classical computational overhead without improving quantum circuit generation quality for quantum chemistry.

Method: GQKAE replaces GQE's feed-forward network components with hybrid quantum-inspired Kolmogorov-Arnold Network (KAN) modules — specifically a HQKANsformer backbone with single-qubit Data Re-Uploading ActivatioN (DARAN) modules for nonlinear mappings. The approach maintains autoregressive operator selection and selected configuration interaction evaluation. Tested on H₄, N₂, LiH, C₂H₆, H₂O, and H₂O dimer.

Key results:

  • ~66% reduction in trainable parameters (~42.7M → ~14.5M) and memory (~162 MB → ~55 MB)
  • Wall-time speedup: 6.8%–16.7% across tested molecules
  • Energy accuracy: matches GQE within chemical accuracy (1.6 mHa) on all tested molecules
  • Quantum gate reduction vs. VQE on H₂O: 81,032 total / 36,480 two-qubit → 2,334 total / 747 two-qubit

Why it matters / caveats: Demonstrates that quantum-inspired KAN architectures can substantially reduce classical overhead while preserving circuit generation quality. Testing is limited to small molecular systems; scalability to larger, strongly correlated systems and practical quantum hardware is unvalidated.

TIDE: Every Layer Knows the Token Beneath the Context →

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

Technical breakdown

Problem: Standard transformers inject token identity only at the input embedding layer, causing rare tokens (Zipf distribution) to be chronically under-trained and contextually similar tokens to collapse to indistinguishable hidden states in limited-capacity models.

Method: TIDE augments standard transformer layers with EmbeddingMemory, comprising K independent MemoryBlocks mapping token indices to context-free semantic vectors. A depth-conditioned softmax router injects these embeddings at every transformer layer, with a learnable null bank allowing layers to suppress injection when unnecessary. Evaluated on WikiText-103, PubMed, and DCLM for language modeling and 8 downstream tasks at 750M, 1B, and 3B parameter scales using LLaMA-Base as the baseline.

Key results:

  • WikiText-103 perplexity (1B, 200B tokens): LLaMA-Base 5.19 → TIDE-24E-1B 4.60 (−11%)
  • Average accuracy across 8 benchmarks (1B): 61.4% → 63.7% (+2.3 pp); BoolQ: 61.7% → 69.5%
  • Rare token loss reduction: 0.704 nats (9.0% relative) on rarest decile vs. 0.068 nats (2.4%) on most frequent — 4.8× disparity
  • TIDE with 2–4 MemoryBlocks reaches perplexity the baseline needs 200B additional tokens to match

Why it matters / caveats: TIDE addresses a fundamental architectural assumption in transformers, yielding consistent gains particularly for rare tokens with minimal architectural overhead. The full computational and memory overhead per MemoryBlock at training and inference is not fully characterized in the paper.

When No Benchmark Exists: Validating Comparative LLM Safety Scoring Without Ground-Truth Labels →

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

Technical breakdown

Problem: Organizations need to compare LLMs for safety in specific languages, sectors, or regulatory contexts where labeled benchmarks do not yet exist and ground-truth labels are unavailable.

Method: The paper formalizes benchmarkless comparative safety scoring and introduces SimpleAudit, a local-first scoring instrument validated through an "instrumental-validity chain" comprising three criteria: (1) AUROC separation between safe and abliterated model contrasts, (2) dominance of target-driven variance over auditor/judge artifacts (η²), and (3) score stability across reruns. Validated on a Norwegian safety scenario pack; applied to compare models including Petri, Borealis, and Gemma 3.

Key results:

  • Safe vs. abliterated targets separated with AUROC 0.89–1.00
  • Target identity is the dominant variance component (η² ≈ 0.52)
  • Severity profiles stabilized within 10 reruns

Why it matters / caveats: Provides a practical, principled validation framework for safety comparisons in domains where benchmarks do not yet exist, enabling domain-specific auditing. Results are conditioned on a fixed scenario pack, rubric, auditor, judge, and sampling configuration; the authors caution against single-ranking reporting in favor of per-category breakdowns.

Sparkle: Realizing Lively Instruction-Guided Video Background Replacement via Decoupled Guidance →

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

Technical breakdown

Problem: Instruction-guided video background replacement is underexplored due to data scarcity, and existing open-source datasets (used by methods like Kiwi-Edit) produce static, unnatural backgrounds.

Method: The authors identify that quality degradation stems from imprecise background guidance during data synthesis and propose a scalable pipeline generating foreground and background guidance in a decoupled manner with strict quality filtering. This produces the Sparkle dataset (~140K video pairs across 5 background-change themes) and Sparkle-Bench as a new evaluation benchmark. Model Kiwi-Sparkle is trained on Sparkle and evaluated using Gemini-2.5-Pro as a judge on OpenVE-Bench and Sparkle-Bench.

Key results:

  • Kiwi-Sparkle vs. Kiwi-Edit on OpenVE-Bench overall: 3.29 vs. 2.58 (+28%)
  • Instruction Compliance: 3.51 vs. 2.81; Visual Quality & Stability: 3.22 vs. 2.36
  • Sparkle-Bench overall: 3.81/5.0; Background Dynamics: 4.05/5.0

Why it matters / caveats: Addresses a previously data-starved task with the largest video background replacement benchmark to date. Evaluation relies entirely on Gemini-2.5-Pro as a judge rather than human raters or traditional metrics (PSNR/SSIM/FVD), which may introduce model-specific biases.

BioTool: A Comprehensive Tool-Calling Dataset for Enhancing Biomedical Capabilities of Large Language Models →

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

Technical breakdown

Problem: LLMs cannot effectively leverage specialized biomedical tools from databases like NCBI, Ensembl, and UniProt that clinical experts and researchers rely on, because no systematic fine-tuning dataset for biomedical tool-calling exists.

Method: BioTool is a dataset of 7,040 human-verified query–API call pairs covering 34 tools from NCBI, Ensembl, and UniProt across variation, genomics, proteomics, evolution, and general biology. Qwen3-4B is fine-tuned on BioTool and compared to Claude 4.5 Sonnet and GPT-5.1 on BioTool Score (primary metric), Exact Match (EM), and API Success Rate (AS), with human evaluation of downstream answer quality.

Key results:

  • BioTool Score: Qwen3-4B fine-tuned 93.6 vs. Claude 4.5 Sonnet 81.4 vs. GPT-5.1 55.4
  • Exact Match: 42.4% vs. 6.5% (Claude) vs. 3.5% (GPT-5.1)
  • API Success Rate: 97.8% vs. 89.4% (Claude) vs. 64.4% (GPT-5.1)
  • Augmenting GPT-5.1 with fine-tuned Qwen3-4B caller: 69% higher normalized answer quality vs. raw GPT-5.1; win rate 84.5% vs. oracle ground-truth 94.2%

Why it matters / caveats: A 4B fine-tuned model dramatically outperforms frontier commercial models on specialized biomedical tool-calling, demonstrating the value of domain-specific training data. Coverage is limited to 34 tools from three databases; broader clinical or wet-lab tool ecosystems are not included.

EDU-CIRCUIT-HW: Evaluating Multimodal Large Language Models on Real-World University-Level STEM Student Handwritten Solutions →

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

Technical breakdown

Problem: Multimodal LLMs are insufficiently reliable for auto-grading authentic university-level STEM student handwritten solutions that interleave mathematical formulas, circuit diagrams, and textual reasoning.

Method: EDU-CIRCUIT-HW is a benchmark of 1,300+ authentic student handwritten solutions from university-level STEM courses, evaluated using expert-verified verbatim transcriptions and grading reports to assess both upstream recognition fidelity and downstream auto-grading. Six MLLMs are tested: Gemini-3-Preview, Gemini-2.5-Pro, GPT-5.1, Claude-4.5-Sonnet, Qwen3-VL-PLUS (closed-source), and Qwen3-VL-8B-Thinking (open-source). A hybrid regrading module routes a fraction of assignments to human graders based on detected error patterns.

Key results:

  • Sample Error Rates: 37.62% (Gemini-3-Preview, best) to 85.43% (Qwen3-VL-8B-Thinking, worst)
  • Point agreement with ground truth: 59.84%–74.46% across models vs. 81.29% for graduate assistant
  • Binary grading agreement: 61.01%–73.68% vs. 83.63% for graduate assistant
  • Hybrid module (routing 3.3–4.4% to human graders): point agreement improves to 74.42%–75.76%

Why it matters / caveats: Reveals a significant reliability gap in MLLM auto-grading for STEM handwritten work even among frontier models, with the best model still 7+ pp below a graduate assistant on point agreement. The dataset is from a single institution's circuit-focused STEM curriculum, limiting generalizability to other disciplines or handwriting styles.

Generated by Claude Code on 2026-05-09. Sources: HuggingFace Daily Papers API + arxiv.

← 2026-05-082026-05-092026-05-10 →