Recent AI research papers with accessible summaries. Updated daily from arXiv, summarized for developers who don't read papers regularly.
David González-Martínez, Shiwei Liu
You can make models significantly more compressible during training with a simple regularizer that costs less than 1% extra compute and doesn't require changing your model architecture or doing expensive matrix decompositions.
SLORR is a training-time regularization method that makes neural networks easier to compress using low-rank factorization. Unlike existing approaches, it works directly on weight matrices without requiring expensive computations, architectural changes, or cached data, adding minimal training overhead while improving how well compressed models perform.
Baha Rababah, Cuneyt Gurcan Akcora, Carson K. Leung
Standard accuracy metrics mask real behavioral divergence in quantized models—you need decision-level metrics to catch when quantized and base models disagree, even when both maintain similar overall performance.
This paper reveals that quantization (compressing LLMs to lower bit-widths) preserves accuracy metrics like perplexity but causes hidden behavioral changes. The authors introduce a new metric called correctness agreement to detect when quantized models make different predictions than base models, and analyze how quantization distorts attention weights differently across model layers.
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.