Recent AI research papers with accessible summaries. Updated daily from arXiv, summarized for developers who don't read papers regularly.
Wentao Zhang, Liliana Hotsko, Woojeong Kim et al.
Instead of calling large language models for every fuzzy task, you can compile a natural-language specification once into a tiny reusable neural artifact that runs locally and cheaply—shifting from per-input problem solving to one-time function compilation.
This paper introduces Program-as-Weights (PAW), a method to compile natural-language function specifications into small, locally-executable neural adapters. A 4B compiler generates parameter-efficient adapters that run on a lightweight 0.6B interpreter, matching the performance of much larger models while using 50x less memory and running efficiently on consumer hardware like MacBook M3.
Mona Schirmer, Metod Jazbec, Alexander Timans et al.
Simple threshold-based monitoring with statistical risk control can effectively catch unsafe LLM outputs in production without requiring complex sequential testing methods.
This paper presents a real-time safety monitoring system for LLMs that uses a verifier model to detect unsafe outputs at deployment time. The approach calibrates decision thresholds using risk control methods and proves competitive with more complex alternatives on reasoning and adversarial datasets.
Abdolazim Rezaei, Mehdi Sookhak, Mahboobeh Haghparast
By combining parameter-efficient fine-tuning (LoRA) with multimodal fusion of urban context, you can build accurate traffic prediction models that use fewer trainable parameters without sacrificing performance.
This paper presents PEHT, a traffic prediction model that combines Transformers with urban mobility data to forecast cellular network demand. It uses LoRA to reduce parameters while a multimodal fusion strategy integrates congestion and mobility information, achieving better accuracy than existing methods on real telecom data.
Ali Zia, Usman Ali, Abdul Rehman et al.
Using topological features (shape and connectivity patterns) during test-time adaptation significantly improves anomaly segmentation by preserving structural coherence that pixel-level methods miss, achieving 15% F1 improvement on standard benchmarks.
This paper introduces TopoTTA, a test-time adaptation framework for anomaly segmentation that uses topological data analysis (persistent homology) to preserve structural consistency in defect detection.
Gina Wong, Drew Prinster, Suchi Saria et al.
Expert-level calibration alone isn't enough for soft-routed MoE models under distribution shift—you need to explicitly calibrate the routing mechanism's aggregate predictions to maintain trustworthy uncertainty estimates.
This paper studies how mixture-of-experts (MoE) models maintain calibrated predictions under distribution shift. The authors show that calibrating individual experts works for hard-routed models but fails for soft-routed ones, and propose an adversarial reweighting method to improve calibration across different routing mechanisms and data distributions.
Qingyang Zhu, Eric Karl Oermann, Kyunghyun Cho
You can train a transformer to act as a fast Bayesian predictor by treating prior information as part of the input context, achieving oracle-level accuracy orders of magnitude faster than traditional Bayesian methods.
This paper presents a method for training transformers to perform Bayesian inference quickly by learning from examples of prior distributions and target datasets. Instead of computing exact Bayesian predictions (which is slow), the model learns to map sequences of prior information and data directly to predictions, enabling fast uncertainty-aware inference that adapts to new priors at test time.
Jinsu Kim, Jihoon Tack, Noah Lee et al.
You can shrink language models for specific character personas by 50%+ while keeping 93.8% of role-playing quality, making multi-NPC applications practical without sacrificing character consistency.
This paper introduces Persona-Pruner, a technique that creates lightweight language models optimized for specific character roles by identifying and preserving only the persona-relevant parts of a full model. Unlike standard pruning that indiscriminately removes parameters, this method maintains role-playing quality while reducing computational cost—useful for applications with many NPCs.
Junlong Tong, Wenqi Xu, Yingqi Fan et al.
Models can now learn to reason efficiently during streaming input instead of only after seeing everything, using fine-grained reward signals that separately optimize early thinking and final deliberation phases.
AdaSR enables language models to reason incrementally as data streams in (like audio or video), rather than waiting for complete input. It uses a new training method called Hierarchical Relative Policy Optimization to teach models when to think and how much computation to spend at each stage, balancing accuracy, speed, and efficiency.
Songhao Wu, Zhongxin Chen, Yuxuan Liu et al.
LLM embeddings can be significantly improved by filtering out a specific subspace encoded in the unembedding matrix that captures frequent tokens—this also enables dimensionality reduction without quality loss.
This paper reveals that LLM embeddings are dominated by frequent but meaningless tokens, which hurts their quality for text search tasks. The authors propose EmbedFilter, a simple linear transformation that removes this noise by filtering out the subspace where the model's unembedding matrix writes high-frequency tokens.
Fatema Siddika, Md Anwar Hossen, Tanwi Mallick et al.
By separating task-specific experts from shared experts with adaptive routing, SETA solves catastrophic forgetting in continual learning without sacrificing performance on new tasks—useful for deploying LLMs that need to learn from multiple domains over time.
SETA is a continual learning framework that prevents LLMs from forgetting old knowledge while learning new tasks by splitting model parameters into task-specific and shared expert modules. Instead of all tasks competing for the same weights, the method uses sparse subspace decomposition to isolate what's unique to each task while preserving shared capabilities across tasks.