Recent AI research papers with accessible summaries. Updated daily from arXiv, summarized for developers who don't read papers regularly.
Haoyaun Zhu, Jie Zhang
LLM judges used to score AI outputs are not stable measurement instruments: identical requests produce different rankings across days and providers, breaking the assumption that 'same model name = same scorer.
This paper audits whether language models used as judges produce consistent scores across repeated requests—a critical assumption for using them to evaluate AI systems. Testing over 52,000 requests, the authors found that identical inputs returned different rankings on different days (agreement of 0.78 when 0.99 was required), making LLM judges unreliable measurement instruments.
Lihao Liu, Peng Tang, Kunwar Yashraj Singh et al.
Prompt optimization doesn't need longer prompts to work better—by systematically diagnosing errors, diversifying solutions, and stabilizing selections, you can get better results with significantly shorter prompts.
ESPO fixes a major problem with evolutionary prompt optimization: prompts getting bloated (3× longer) without accuracy gains. It uses three phases—diagnosing error patterns, generating diverse candidate prompts, and selecting stable ones—to create shorter, better prompts. On seven NLP benchmarks, ESPO beats the previous best method by 3.76 percentage points while making prompts 47% shorter.
Yufan Wu, Yinghui He, Zhengyi Hu et al.
Small model failures aren't noise—they're structured patterns you can reuse. By studying what weaker models get wrong, you can guide stronger models to avoid similar mistakes with minimal computational overhead.
CritICL uses failure patterns from smaller models to guide larger models during inference. Instead of discarding weak model mistakes, the method captures these predictable failure modes and feeds them as critique examples to help stronger models reason better—achieving better performance than standard methods while using fewer tokens.
Liyan Tang, Cyrus Rashtchian, Chun-Sung Ferng et al.
Systematically accumulating agent experience into a shared knowledge base makes skills more effective and transferable—smaller models with evolved skills can outperform much larger models without them.
WikiSkill is a framework that helps AI agents build and reuse skills by maintaining a persistent knowledge base (wiki) that captures insights from past experiences. Instead of letting optimization histories scatter across runs, the system consolidates what agents learn into organized, reusable skills that improve performance across different tasks and models.
Nikita Doikov
You can get fast second-order convergence in optimization without solving expensive auxiliary problems—just one linear system per iteration with the right parameter choices.
This paper presents a new accelerated Newton method for convex optimization that achieves cubic convergence (O(1/k³)) using only one linear solve per iteration. Unlike existing approaches, it avoids expensive subproblems like cubic regularization and works with inexact solvers, making it practical for large-scale problems.
Elaine Lau, Thanuka Udumulla, Lee Izhaki-Tavor et al.
State-of-the-art vision-language models fail at interpreting real scientific artifacts that domain experts find straightforward, highlighting a critical gap between general image understanding and specialized scientific visual reasoning needed for practical biotech applications.
VIALS is a benchmark of 161 visual question-answering tasks based on real scientific images (gel blots, microscopy, flow cytometry plots, etc.) from biotech workflows. Current vision-language models struggle with these domain-specific images despite excelling at natural images, revealing gaps in scientific reasoning that limit their usefulness in professional life sciences research.