AI papers — 2026-05-10
Jump to one of 19 papers
- Beyond Semantic Similarity: Rethinking Retrieval for Agentic Search via Direct Corpus Interaction
- RaguTeam at SemEval-2026 Task 8: Meno and Friends in a Judge-Orchestrated LLM Ensemble for Faithful Multi-Turn Response Generation
- When to Trust Imagination: Adaptive Action Execution for World Action Models
- Audio-Visual Intelligence in Large Foundation Models
- StraTA: Incentivizing Agentic Reinforcement Learning with Strategic Trajectory Abstraction
- EMO: Pretraining Mixture of Experts for Emergent Modularity
- RemoteZero: Geospatial Reasoning with Zero Human Annotations
- KernelBench-X: A Comprehensive Benchmark for Evaluating LLM-Generated GPU Kernels
- PianoCoRe: Combined and Refined Piano MIDI Dataset
- Prescriptive Scaling Laws for Data Constrained Training
- The Scaling Properties of Implicit Deductive Reasoning in Transformers
- TIDE: Every Layer Knows the Token Beneath the Context
- Balanced Aggregation: Understanding and Fixing Aggregation Bias in GRPO
- GeoStack: A Framework for Quasi-Abelian Knowledge Composition in VLMs
- Generative Quantum-inspired Kolmogorov-Arnold Eigensolver
- BioTool: A Comprehensive Tool-Calling Dataset for Enhancing Biomedical Capabilities of Large Language Models
- When No Benchmark Exists: Validating Comparative LLM Safety Scoring Without Ground-Truth Labels
- Sparkle: Realizing Lively Instruction-Guided Video Background Replacement via Decoupled Guidance
- 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 →
Technical breakdown
Problem: Conventional retrieval systems based on semantic similarity fail for complex information-seeking queries requiring exact lexical constraints, sparse clue conjunctions, local context checks, and multi-step hypothesis refinement.
Method: The paper proposes Direct Corpus Interaction (DCI), a paradigm that replaces embedding-based retrievers with general-purpose programmatic tools (grep, shell commands) that let agents interact with raw corpora directly. Rather than encoding queries and documents into vector spaces, agents issue searches and filters against the corpus in a multi-step, hypothesis-refinement loop. The system is evaluated against strong sparse (BM25), dense, and reranking baselines on multiple benchmarks.
Key results:
- Substantially outperforms strong sparse, dense, and reranking baselines on BRIGHT and BEIR datasets (specific absolute numbers not extractable from available content)
- Achieves strong accuracy on BrowseComp-Plus and multi-hop QA benchmarks
Why it matters / caveats: The paper identifies that retrieval quality depends on the "resolution of the interface" between model and corpus, not just reasoning ability — a conceptual shift with broad implications for RAG system design. The reliance on general-purpose shell tools may limit applicability to structured corpora and may introduce latency compared to vector search.
RaguTeam at SemEval-2026 Task 8: Meno and Friends in a Judge-Orchestrated LLM Ensemble for Faithful Multi-Turn Response Generation →
Technical breakdown
Problem: Generating faithful, high-quality responses across multiple conversational turns from reference passages is difficult for any single LLM, motivating ensemble approaches under the MTRAGEval shared task framework.
Method: The system uses a heterogeneous ensemble of seven LLMs with two prompting variants each, orchestrated by GPT-4o-mini as a judge that selects the best response per turn. The team also introduces Meno-Lite-0.1, a 7B domain-adapted model fine-tuned for cost-efficient faithfulness. The ensemble targets Task B (generation with reference passages) in SemEval-2026 Task 8 (MTRAGEval).
Key results:
- Conditioned harmonic mean of 0.7827, outperforming the gpt-oss-120b baseline at 0.6390 (+0.1437)
- Ranked 1st among 26 participating teams
Why it matters / caveats: Winning a competitive shared task with a judge-orchestrated ensemble validates the value of diversity over single large models. The approach requires calling multiple LLMs per turn, raising inference cost; the 7B Meno-Lite-0.1 model is positioned as a cost-reduction measure but is only lightly described in the abstract.
When to Trust Imagination: Adaptive Action Execution for World Action Models →
Technical breakdown
Problem: World Action Models (WAMs) predict action chunks over a fixed horizon, but rigidly executing those predictions without checking whether they remain consistent with real observations leads to failures in robot manipulation.
Method: The paper introduces 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 or replan. FFDC is paired with Mixture-of-Horizon Training, which diversifies trajectory length coverage during training to enable robust adaptive execution. The system is evaluated on the RoboTwin benchmark (50 manipulation tasks) and on a real Astribot S1 robot (34 DoF).
Key results:
- RoboTwin random setting (hard tasks): success rate improves from 54.20% (Base-Motus) to 76.40% (+22.2 pp), inference calls reduced from 5.47 to 1.69 (-69.1%), execution time cut from 33.0 s to 20.5 s (-37.9%)
- Real-world pick-and-place tasks: average success rate improves from 45% to 80% (+35 pp) vs. fixed LC-16 baseline
- Ablation: removing predicted visual tokens drops success rate from 76.4% to 71.6%
Why it matters / caveats: FFDC substantially improves both efficiency and reliability simultaneously — a rare combination. Real-world results rely on only two task types (banana and carrot pick-and-place), so broader generalization needs further study.
Audio-Visual Intelligence in Large Foundation Models →
Technical breakdown
Problem: The field of audio-visual intelligence lacks a unified taxonomy covering the full landscape from perception tasks (speech recognition, sound localization) through generation and interactive dialogue in large foundation models.
Method: This 56-page survey establishes a unified taxonomy of Audio-Visual Intelligence (AVI) tasks and reviews the technical landscape across modality tokenization, cross-modal fusion strategies, autoregressive and diffusion-based generation, large-scale pretraining, instruction alignment, and preference optimization. It covers both understanding tasks (e.g., audio-visual speech recognition, sound source localization) and generation tasks (e.g., talking head synthesis, audio-visual generation), surveying 16 figures and 24 tables worth of comparative coverage.
Key results:
- Not stated (survey paper; no single benchmark result)
Why it matters / caveats: A comprehensive survey with a structured taxonomy provides a much-needed reference for researchers entering the audio-visual multimodal space. As a survey, it does not propose a new method or report novel experimental results; its value lies in synthesizing an otherwise fragmented literature.
StraTA: Incentivizing Agentic Reinforcement Learning with Strategic Trajectory Abstraction →
Technical breakdown
Problem: Optimizing large language models for extended multi-step decision-making via reinforcement learning is hampered by sparse rewards and the difficulty of credit assignment over long horizons.
Method: StraTA samples a compact natural-language strategy from the initial task state, conditions all subsequent actions on that strategy, and trains strategy generation and action execution jointly end-to-end. This structured abstraction provides a dense inductive bias that guides exploration without requiring manually designed reward shaping. The framework is evaluated on ALFWorld, WebShop, and SciWorld benchmarks.
Key results:
- ALFWorld: 93.1% success rate
- WebShop: 84.2% success rate
- SciWorld: 63.5% overall score
Why it matters / caveats: Joint training of strategy and action components is elegant and avoids the need for separate planning modules. No direct comparison numbers against prior RL-for-agent methods are available from the abstract, making it hard to quantify the improvement over, e.g., ReAct or similar baselines.
EMO: Pretraining Mixture of Experts for Emergent Modularity →
Technical breakdown
Problem: Standard Mixture-of-Experts (MoE) models distribute tokens across experts without semantic structure, causing severe performance degradation when unused experts are pruned and limiting modular deployment.
Method: EMO introduces a document-boundary constraint during pretraining that forces tokens from similar domains to rely on similar experts, encouraging semantic specialization to emerge. The model uses 128 experts (127 routed + 1 shared) with 8 experts active per token, totaling 1B active / 14B total parameters, trained on 1 trillion tokens from the OLMoE corpus plus a 50B-token annealing phase. Expert subsets are selected using a small amount of domain-specific validation data (as few as one few-shot example).
Key results:
- Retaining only 25% of experts causes just a 1% absolute performance drop (vs. >10% for standard MoE)
- Retaining only 12.5% of experts causes just a 3% absolute drop (vs. >15% for standard MoE)
- Full-model benchmarks: MC9 63.1, MMLU 42.8, comparable to standard MoE (MC9 63.9, MMLU 42.4)
- Expert subsets outperform memory-matched 32-expert and 8-expert models trained from scratch
Why it matters / caveats: EMO enables deploying domain-specific subnetworks of a single large MoE without retraining, with near-full-model accuracy — useful for inference-time specialization and cost reduction. The constraint mechanism and its interaction with other architectural choices are not fully detailed in available content.
RemoteZero: Geospatial Reasoning with Zero Human Annotations →
Technical breakdown
Problem: Geospatial reasoning (grounding queries to spatial locations in remote sensing images) typically requires expensive bounding-box annotations that are unavailable for most satellite imagery.
Method: RemoteZero exploits the asymmetry that an MLLM is better at verifying whether a region satisfies a query than directly predicting coordinates. It replaces geometric supervision with a semantic verification reward signal to drive GRPO training without box annotations, using an area penalty to discourage degenerate large-box solutions. A 15%-padding context-crop strategy and iterative self-evolution allow the model to improve on unlabeled remote sensing imagery using only its own verification outputs. The EarthReason benchmark is used for evaluation.
Key results:
- RemoteZero (Self-Evolution): 71.29% Acc@0.5 and 61.70 gIoU on EarthReason test set
- Surpasses supervised RemoteReasoner by +3.18 pp in Acc@0.5 (68.11%), despite zero annotation use
- General MLLMs (Qwen2.5-VL-7B: 45.82%; InternVL3.5: 5.26%) fall far below
- Adding area penalty improves from 65.20% to 69.96% Acc@0.5
Why it matters / caveats: Exceeding supervised baselines with zero bounding-box annotations is a notable result for practical remote sensing deployment. The gIoU (61.70) still trails the supervised method (69.29), indicating the approach localizes correctly more often but with less precise box boundaries.
KernelBench-X: A Comprehensive Benchmark for Evaluating LLM-Generated GPU Kernels →
Technical breakdown
Problem: Existing benchmarks for LLM-generated GPU kernels do not adequately cover the diversity of CUDA programming tasks or reveal why certain kernel categories systematically fail.
Method: KernelBench-X introduces 176 tasks across 15 categories (including Fusion, Quantization, and others) and evaluates five LLM-based methods on both correctness and hardware efficiency. The benchmark measures compilation rate, correctness, and speedup relative to the PyTorch baseline, and examines the effect of iterative refinement on kernel quality.
Key results:
- Task category explains 9.4% of variance in correctness vs. 3.3% for method choice (nearly 3x more)
- 72% of Fusion tasks failed across all five methods
- Quantization tasks: 0/30 successes across all methods
- Iterative refinement raised compilation rate from 52.3% to 68.8%, but average speedup declined from 1.58x to 1.44x
- 46.6% of correct kernels still underperformed the PyTorch baseline in speed
Why it matters / caveats: The finding that task category dominates method choice in determining success implies that LLM kernel generation research should prioritize category-level improvements over general prompt engineering. The near-zero success on quantization and fusion reveals fundamental gaps in current LLMs' GPU programming capabilities.
PianoCoRe: Combined and Refined Piano MIDI Dataset →
Technical breakdown
Problem: Piano MIDI datasets for music information retrieval and generative modeling suffer from fragmentation, inconsistent quality, transcription corruption, and lack of score-aligned performance data at scale.
Method: PianoCoRe aggregates and refines piano MIDI data into a four-tier structure: PianoCoRe-C (250,046 performances / 5,625 pieces / 483 composers / 21,763 hours), PianoCoRe-B (deduplicated), PianoCoRe-A (note-aligned to 1,591 scores), and PianoCoRe-A* (high-quality subset). A learned MIDI quality classifier (macro F1 = 89.1%) filters corrupted transcriptions, and RAScoP, an alignment-refinement pipeline, corrects temporal alignment errors and interpolates missing notes.
Key results:
- MIDI quality classifier macro F1: 89.1% (corrupted class F1: 0.946; score class F1: 1.000)
- PianoCoRe-A: 157,207 aligned performances — the largest open-source score-aligned piano MIDI collection
- After RAScoP, 86.6% of sequences maintain alignment recall > 85%
- Performance continuation model: velocity error 8.613 MIDI bins, TimeShift 0.016 s, TimeDuration 0.155 s on PianoCoRe-A (124k samples)
Why it matters / caveats: The dataset's scale and alignment quality should substantially benefit downstream tasks in expressive performance modeling and piano transcription. Published in Transactions of the ISMIR 2026. The RAScoP pipeline modestly reduces raw alignment recall (0.935 to 0.920), meaning some fine-grained alignment information is lost in cleaning.
Prescriptive Scaling Laws for Data Constrained Training →
Technical breakdown
Problem: Chinchilla-style scaling laws assume all training tokens are unique, but when high-quality data is scarce, tokens are repeated across epochs — a regime the standard laws cannot prescribe optimal compute allocation for.
Method: The authors train 300+ Llama 2-architecture models ranging from 15M to 1B parameters on FineWeb, varying unique data budgets from 50M to 6B tokens over up to 16 epochs. They model excess loss from data repetition with a simple additive overfitting penalty (one-parameter and four-parameter forms) and derive prescriptive scaling laws that jointly optimize model size, data repetition, and weight decay. Downstream evaluation uses 19 language understanding tasks from the OLMES benchmark.
Key results:
- Four-parameter additive penalty law: R2 = 0.9971 vs. R2 = 0.5825 for exponential decay baseline
- At 250M unique tokens / 5e18 FLOPs: perplexity 22.90 vs. 23.91 for effective-parameter approach
- At 500M unique tokens / 2e19 FLOPs: perplexity 17.73 vs. 19.34
- Strong weight decay (lambda=1.0) reduces overfitting coefficient by ~70% vs. standard lambda=0.1; crossover point at ~3.2e18 FLOPs for 250M unique tokens
Why it matters / caveats: Directly actionable prescriptions for practitioners training under data constraints, including the counter-intuitive recommendation to use weight decay an order of magnitude stronger than typical. Results are based on Llama 2 architecture on FineWeb only; transferability to other architectures and data distributions is not validated.
The Scaling Properties of Implicit Deductive Reasoning in Transformers →
Technical breakdown
Problem: It is unclear how deep Transformers must be to match chain-of-thought (CoT) reasoning on deductive tasks, and whether depth alone is sufficient for in-distribution reasoning without explicit intermediate steps.
Method: The authors use Llama 3-based decoder-only Transformers (standard config: L=8 layers, d=256; scaled up to L=128 layers) trained on three synthetic Horn clause reasoning benchmarks — Rule-Priority (RP), Label-Priority (LP), and LP* — with up to 50k examples per depth/label bucket and logical depth up to 6. Key design choices include a bidirectional prefix mask, a corrective training objective, and an r2 heuristic to reduce spurious feature-label correlations. Universal Transformers with weight-tied layers are also evaluated.
Key results:
- Corrective objective: +18.9 +/- 8.4 pp on direct prediction accuracy
- Bidirectional masking: +8.4 +/- 7.1 pp
- r2 heuristic with corrective: +7.1 +/- 3.0 pp
- Spurious feature-label correlation reduced from 0.277 to 0.019 across benchmarks
- Sufficiently deep bidirectional-prefix models approach CoT performance within training horizon (depth <= 6), but CoT remains necessary for depth extrapolation
Why it matters / caveats: Provides a principled answer to the depth-vs-reasoning question: depth helps substantially within the training distribution, but CoT remains essential for out-of-distribution generalization. Results are on synthetic benchmarks only; whether they transfer to natural-language reasoning chains is an open question.
TIDE: Every Layer Knows the Token Beneath the Context →
Technical breakdown
Problem: Standard Transformers look up token embeddings only at the input layer and then discard them, causing rare tokens to receive insufficient gradient signal (rare token problem) and creating indistinguishable representations for semantically similar tokens in limited-capacity models (contextual collapse problem).
Method: TIDE augments transformers with EmbeddingMemory: an ensemble of K independent MemoryBlocks, each containing a full vocabulary embedding table, injected across all layers via a depth-conditioned softmax router. Models of 750M, 1B, and 3B parameters are trained with K in {2, 4, 8, 16, 24} memory blocks and evaluated on WikiText-103, PubMed, and DCLM perplexity plus eight zero-shot classification benchmarks.
Key results:
- WikiText-103 perplexity: TIDE-1B achieves 4.89 vs. LLaMA-Base 5.19
- Zero-shot accuracy (1B, 8 benchmarks): 63.7% (TIDE-24E) vs. 61.4% (baseline)
- Rare token loss reduction: 0.704 nats (9.0% relative) on the rarest decile vs. 0.068 nats on the most frequent decile (~4.8x disparity)
- Decoding overhead: ~14% (11.085 ms to 12.688 ms per token on a single B200 GPU)
- EmbeddingMemory storage: 4.2 GB (FP16) for TIDE-8E-1B, reducible to 1.05 GB with 4-bit quantization
Why it matters / caveats: The disproportionate benefit for rare tokens addresses a well-known but under-targeted problem in LLM training. The 14% decoding latency overhead and multi-GB memory cost for the embedding tables may limit applicability on constrained-memory inference hardware.
Balanced Aggregation: Understanding and Fixing Aggregation Bias in GRPO →
Technical breakdown
Problem: Group Relative Policy Optimization (GRPO) training of LLMs is sensitive to how token-level gradient terms are aggregated within each group: token aggregation introduces sign-length coupling bias while sequence aggregation downweights longer responses, yet this design dimension is largely ignored.
Method: Balanced Aggregation (BA) computes token-level means separately within the positive and negative response subsets of each group, then combines them with sequence-count-based weights — serving as a drop-in replacement for standard token or sequence aggregation in GRPO. It is evaluated on Qwen2.5-Math-7B and Qwen3-1.7B trained on DAPO-17k (~17k problems) and Polaris (~53k problems), measured on six benchmarks: Math-500, AIME-2024, AIME-2025, OlympicBench, Minerva-MATH, and LivecodeBench.
Key results:
- Qwen2.5-Math-7B on DAPO-17k: BA peak accuracy 0.3634 vs. token-agg 0.3595 and seq-agg 0.3578
- Qwen3-1.7B on DAPO-17k: BA last-step accuracy 0.4695 vs. token-agg's collapse to 0.4360 (-0.0335)
- Qwen3-1.7B on Polaris: BA last-step 0.4640 vs. token-agg 0.4349 (+0.0291), avoiding training instability
Why it matters / caveats: BA addresses a subtle but impactful implementation choice that practitioners often overlook, and can prevent training collapse at minimal implementation cost. The paper also reveals a "model-dependent flip" where the best aggregation strategy differs by model size, which BA resolves by being consistently competitive across both regimes.
GeoStack: A Framework for Quasi-Abelian Knowledge Composition in VLMs →
Technical breakdown
Problem: Accumulating expertise across multiple domains or tasks in Vision-Language Models typically leads to catastrophic forgetting of earlier knowledge, and naive sequential adapter composition degrades performance on previously learned domains.
Method: GeoStack applies geometric constraints (quasi-Abelian structure, upper-triangular adapter manifolds) to preserve foundational model knowledge while composing independent domain experts. A weight-folding property collapses the expert stack into a single effective weight matrix, achieving O(1) inference complexity regardless of the number of experts. The framework is evaluated on multi-domain adaptation (easy and hard stacking orders) and class-incremental learning (CIFAR-100, four-task setup).
Key results:
- Hard Stack (i to e to d to f): GeoStack 74.4% average accuracy vs. BiCLIP 72.6% (+1.8 pp); ImageNet retention 62.8% vs. 52.6% (+10.2 pp)
- Hexa-Stack composition: GeoStack 73.4% average accuracy vs. 64.0% baseline (+9.4 pp); orthogonality error 0.0142 vs. 0.1359
- CIFAR-100 incremental: knowledge decay 2.12% (GeoStack) vs. 14.18% (BiCLIP); final Task-0 retention 75.80% vs. 72.04%
- ~50% parameter reduction via upper-triangular constraints; training time ~25 minutes per expert on RTX 2080 Ti
Why it matters / caveats: O(1) inference overhead at composition time is practically significant for deploying many-domain expert systems. Results are primarily on vision classification benchmarks; generalization to open-vocabulary VLM tasks and larger backbone models is not demonstrated.
Generative Quantum-inspired Kolmogorov-Arnold Eigensolver →
Technical breakdown
Problem: Generative Quantum Eigensolvers (GQE) using GPT-based architectures require large parameter counts and high memory usage, limiting scalability for quantum chemistry problems.
Method: GQKAE replaces GPT-2 transformer components in GQE with hybrid quantum-inspired Kolmogorov-Arnold Network (KAN) modules while maintaining the autoregressive operator selection and configuration interaction evaluation framework. The approach is benchmarked on six molecular systems — H4 (8 qubits), N2 (16 qubits), LiH (20 qubits), C2H6 (12 qubits), H2O (16 qubits), and the H2O dimer (16 qubits) — against the CASCI reference energy.
Key results:
- ~66% reduction in trainable parameters (roughly 42.7M to 14.5M) and equivalent memory savings vs. GPT-based GQE
- Wall-time speedup: 6.8%-16.7% across molecular systems (H4: 16.7% fastest)
- Chemical accuracy (within 1.6 mHa of CASCI) maintained across all six systems
- Both GQKAE and GQE require only ~2,334 total gates in H2O vs. >81,000 for standard VQE
Why it matters / caveats: Achieving the same chemical accuracy with 66% fewer parameters is a meaningful efficiency gain for quantum chemistry workflows. The wall-time speedups are modest (single-digit to ~17%) and experiments are limited to small molecular systems; scaling to larger, more complex molecules remains to be shown.
BioTool: A Comprehensive Tool-Calling Dataset for Enhancing Biomedical Capabilities of Large Language Models →
Technical breakdown
Problem: Large language models lack reliable access to live biomedical databases (NCBI, Ensembl, UniProt), and no large-scale, human-verified dataset exists to train accurate tool-calling behavior for this domain.
Method: BioTool consists of 7,040 human-verified query-API call pairs across 34 tools and 124 API endpoints from NCBI, Ensembl, and UniProt, spanning variation, genomics, proteomics, evolution, and general biology. A Qwen3-4B model is fine-tuned on this dataset and evaluated on a held-out test set and via human expert evaluation, comparing against frontier proprietary models including Claude 4.5 Sonnet and GPT-5.1. Published at ACL 2026.
Key results:
- Fine-tuned Qwen3-4B BioTool score: 93.6 vs. Claude 4.5 Sonnet 81.4 (+15.0% relative improvement)
- Exact match: 42.4% (fine-tuned) vs. 6.5% (Claude 4.5)
- API success rate: 97.8% (fine-tuned Qwen3-4B)
- Human expert evaluation: tool-augmented GPT-5.1 (oracle BioTool data) preferred 94.2% of the time; BioTool-fine-tuned caller yields 84.5% win rate
Why it matters / caveats: A 4B fine-tuned model substantially outperforming frontier 100B+ models on biomedical tool calling demonstrates the value of domain-specific fine-tuning data. Evaluation is limited to 34 curated tools; coverage of the broader biomedical API ecosystem and robustness to API version changes are not addressed.
When No Benchmark Exists: Validating Comparative LLM Safety Scoring Without Ground-Truth Labels →
Technical breakdown
Problem: Comparing LLM safety across models is impossible when no labeled benchmark exists for a specific language, sector, or regulatory context, leaving practitioners without a validated auditing methodology.
Method: The paper formalizes "benchmarkless comparative safety scoring" and proposes an instrumental-validity chain with three criteria: (1) responsiveness — safe vs. abliterated model variants must be separable; (2) target dominance — target identity should explain more score variance than auditor/judge artifacts; (3) stability — scores must converge across reruns. This is instantiated in SimpleAudit, validated on a Norwegian public-sector safety pack comparing Borealis and Gemma 3 models across multiple scenario categories.
Key results:
- Safe vs. abliterated separation: AUROC 0.89-1.00 across all tested judge-auditor-model size combinations
- Target variance dominance: eta-squared approx 0.52 [0.41, 0.62] for target identity; auditor eta-squared = 0.28, judge eta-squared = 0.25
- Score stability: mean absolute deviation drops from 8.3 points (1 run) to 0.9 points (9 runs) for safe targets
- Norwegian case: Borealis vs. Gemma 3 4B — Borealis advantage +14.2 points overall, critical-rate delta -23.9 pp
Why it matters / caveats: Provides a replicable, statistically grounded methodology for safety auditing in jurisdictions and domains lacking established benchmarks. Results are specific to Norwegian public-sector scenarios; the validity chain criteria may not be sufficient to guarantee meaningful safety ranking in all deployment contexts.
Sparkle: Realizing Lively Instruction-Guided Video Background Replacement via Decoupled Guidance →
Technical breakdown
Problem: Instruction-guided video background replacement requires synthesizing temporally consistent new scenes while preserving foreground-background interactions, a task for which no large-scale, high-quality training dataset or benchmark existed.
Method: Sparkle constructs a dataset of ~140,000 video pairs across 5 themes and 22 subthemes (~100 distinct scenes) by generating foreground and background guidance in a decoupled manner with strict quality filtering, addressing the static and unnatural backgrounds produced by prior datasets like OpenVE-3M. A Sparkle-Bench evaluation benchmark of 458 videos across 97 scenes is also introduced. The Kiwi video editing model is fine-tuned on Sparkle data (Kiwi-Sparkle) and evaluated against the original Kiwi-Edit baseline.
Key results:
- OpenVE-Bench: Kiwi-Sparkle overall score 3.29/5.0 vs. Kiwi-Edit 2.58/5.0 (+28% overall)
- Sparkle-Bench: overall 3.81/5.0; background dynamics 4.05/5.0; instruction compliance 4.10/5.0
- Decoupled guidance vs. copy-and-paste: +115% improvement in visual quality for the Time theme
- Sparkle dataset achieves >20% average improvement over OpenVE-3M across multiple quality dimensions
Why it matters / caveats: The decoupled guidance strategy and Sparkle-Bench together establish a new quality standard and evaluation protocol for video background replacement. Evaluations are conducted with GPT-based judges on 5-point scales, which introduces potential bias; independent human evaluations are not reported.
EDU-CIRCUIT-HW: Evaluating Multimodal Large Language Models on Real-World University-Level STEM Student Handwritten Solutions →
Technical breakdown
Problem: Multimodal LLMs used for automated grading of handwritten STEM assignments may fail silently due to recognition errors, and no dataset of real student handwritten solutions with expert-verified transcriptions and grades existed for systematic evaluation.
Method: EDU-CIRCUIT-HW comprises 1,334 handwritten circuit analysis solutions from 29 undergraduate students across 62 unique homework problems, with 513 expert-verified transcription samples and 821 graded test samples. A dual evaluation pipeline assesses upstream recognition fidelity and downstream auto-grading performance. A human-in-the-loop regrading module routes a small fraction of assignments to human graders to recover accuracy. Published at ACL 2026 Findings.
Key results:
- Best recognition: Gemini-3-Preview sample error rate 37.62%, binary agreement 87.91%; GPT-5.1 sample error rate 71.54%, binary agreement 77.78%
- Symbolic/character recognition errors cause ~20% Error Impact Rate on fine-grained grading
- Human-in-the-loop: routing just 3.3%-4.4% of assignments to humans improves point agreement from 69.91% to 74.42% (Gemini-2.5-Pro)
- Graduate TA grading: 83.63% binary agreement, outperforming all MLLMs on fine-grained metrics
Why it matters / caveats: The finding that even the best MLLM (Gemini-3-Preview) has a 37.62% sample error rate on handwritten STEM content is a sobering result for AI-in-education applications. The dataset is limited to a single course (circuit analysis) at one institution; diversity across STEM disciplines and student populations remains untested.