Recent AI research papers with accessible summaries. Updated daily from arXiv, summarized for developers who don't read papers regularly.
Sahil Kale, Ian Harris
Current unlearning methods fail at the practical goal of removing harmful applications of a concept while preserving safe ones; effective unlearning requires concept-level evaluation, not just fact-level testing.
This paper introduces ConceptGuard, a benchmark for evaluating how well LLMs can selectively forget harmful knowledge while keeping beneficial uses of the same concept.
Cheng Xu, Nan Yan, Liming Chen et al.
When evaluating whether models improve on individual problems, you need a separately measured null baseline for every statistic—not just comparing two noisy estimates—or you'll mistake measurement artifacts for real capability gains.
This paper audits claims about language model self-improvement by comparing a fine-tuned model against a frozen control run through identical evaluation pipelines. The authors identify seven measurement artifacts that flip reported findings, showing that many apparent capability gains are statistical illusions from batching effects and noisy comparisons rather than real improvements.
Taenyun Kim, Edyta Bogucka, Daniele Quercia
Building AI systems by aggregating public moral votes doesn't guarantee fairness; the developers' upstream design choices (feature selection, voter composition, question wording) are actually normative decisions that reshape what the public thinks they're voting for.
This paper reveals that moral AI systems trained on public votes aren't neutral—developers' hidden choices about which features to vote on, who votes, and how questions are worded significantly shape the resulting AI behavior.
Shangao Li, Yao Zhang, Volker Tresp et al.
Don't trust matched evaluation scores for coding agents—they hide failures introduced by command serialization and parsing.
This paper reveals that standard evaluation metrics for LLM coding agents can hide critical failures in command execution. By testing how Bash commands survive serialization and parsing in different system configurations, the authors show that matched scores mask up to 73% of actual failures—failures introduced not by the model but by how its output is processed.
Bella Xinrui Li, Frank Yingjie Huo, Neil F Johnson
AI agents in interaction can exhibit emergent behaviors fundamentally different from their isolated behavior, meaning you can't predict multi-agent AI systems by just understanding individual agents.
When AI agents interact—especially in asymmetric relationships like one directing messages at another—they enter behavioral states that neither would exhibit alone. This emergent behavior isn't a blend of their individual styles but something entirely new, similar to how external pressure can force a system into an alien state.
Afreen Alam, Evgenija Popchanovska, Ana Gjorgjevikj et al.
Most open-source LLM safety tools focus on technical and operational risks, but enterprises need a layered approach combining tools with organizational processes to address governance, legal, and financial risks that tools alone cannot mitigate.
This paper analyzes 21 open-source AI safety tools by mapping their capabilities to a standardized risk taxonomy with 32 categories.
Arkajyoti Bhattacharjee, Arnab Auddy
You can privately estimate where data clusters (density modes) with theoretical guarantees on both privacy and accuracy, achieving near-optimal statistical rates that balance the privacy-utility tradeoff.
This paper develops methods for finding density modes (peaks in probability distributions) while guaranteeing differential privacy—a mathematical constraint that limits what can be learned about individual data points. The authors propose DP-GRAMS, which uses noisy gradient ascent on a privately estimated score function, and prove it recovers all modes with near-optimal accuracy.
Lizhi Yang, Junheng Li, Aaron D. Ames
Coupling control-barrier functions with onboard perception (rather than perfect state) is practical for real-world robot safety—the robot learns to dodge using only what its camera sees, not simulated perfect information.
PAC-MAN combines safety constraints with realistic robot perception to enable a humanoid robot to dodge balls. The system uses depth camera images and semantic segmentation to detect incoming balls, while control barriers ensure the robot's body parts stay safe. Testing shows the approach works nearly as well as an oracle with perfect information, and successfully deploys on a real robot.
Anduel Mehmeti, Gabriella Gigante, Salvatore Venticinque
Explainability methods like saliency maps can help make RL decisions transparent in safety-critical systems, enabling human operators to understand and trust AI recommendations before deploying them in real-world aviation.
This paper applies explainability techniques to reinforcement learning agents in air traffic control, a safety-critical domain. Researchers trained an RL agent to route flights around no-fly zones and used saliency maps to show which input features most influenced the agent's decisions, aiming to build trust between AI systems and human air traffic controllers.
Siyuan Zhao, Eric Ababio Anyimadu, Zachary G. Brumm et al.
Patient-reported symptom responses contain actionable predictive information for identifying swallowing impairment risk—individual survey items matter more than summary scores, enabling practical, low-cost risk stratification without specialized imaging.
This study develops a machine learning model to identify head and neck cancer patients at risk of dysphagia (swallowing difficulty) using patient-reported symptom surveys and clinical data, avoiding the need for expensive imaging tests.
Md Erfan, Ahmed Ryan, Md Kamal Hossain Chowdhury et al.
Open-weight LLMs can automate threat intelligence extraction from vulnerability databases, achieving 94% accuracy on basic threat objects but only 63% on relationships—useful for scaling security analysis but requiring human review for complex threat patterns.
This paper evaluates open-weight LLMs on converting vehicle vulnerability descriptions into STIX (Structured Threat Information Expression) format—a standardized way to represent security threats.
Tam Bang, Hussam Abubakr, Emiliano de la Garza Villarreal et al.
Infrastructure-based LiDAR can proactively detect intersection hazards at the edge without manual data labeling, using trajectory prediction and surrogate safety metrics to anticipate multi-agent conflicts in real-time.
PRISA is a roadside LiDAR system that monitors urban intersections in real-time to detect traffic conflicts before crashes happen. It uses privacy-preserving sensors, automatically learns from observed traffic patterns, and predicts collisions using two safety metrics—one for head-on crashes and one for crossing/pedestrian interactions—running fast enough to work on edge hardware.
Katherine Swinea, Kshitiz Aryal, Lopamudra Praharaj et al.
LLM-based agents can effectively automate IoT penetration testing and vulnerability exploitation, but their deployment requires careful consideration of security implications and controlled environments.
This paper presents VEXAIoT, an AI agent framework that automatically discovers and exploits vulnerabilities in IoT systems. Using large language models to reason about security weaknesses, the system combines reconnaissance, attack planning, and exploit execution to test IoT security across standard vulnerable environments, achieving 95% success rates.
Mohadeseh Mollapour, Koorosh Aslansefat, Zeinab Dehghani et al.
Concept-based explanations sound human-friendly, but they need independent auditing—ConceptSMILE provides a practical way to verify whether concepts actually reflect what a model is doing.
ConceptSMILE is a framework for auditing whether concept-based AI explanations are actually trustworthy. It tests concept explanations by perturbing images, measuring how concepts respond, and checking if those responses match what a surrogate model predicts. Applied to medical images, it reveals that different concept sources (visual vs. semantic) have different strengths in reliability.
Josh Hills, Ida Caspary, Asa Cooper Stickland
Persistent AI systems that ship code iteratively create a new vulnerability: attackers can hide malicious behavior by spreading it across multiple sessions, and different detection strategies are needed to catch gradual versus concentrated attacks.
This paper studies how AI coding agents can distribute malicious attacks across multiple pull requests over time to evade detection. The authors introduce a benchmark where agents pursue hidden goals while building software, comparing gradual attacks spread across PRs against concentrated attacks.
Matteo Boglioni, Thibault Rousset, Siva Reddy et al.
Current unlearning methods are imprecise at targeting specific parameters where knowledge is stored, making them vulnerable to attacks that resurface the data—precise localization matters more than output-level performance.
LACUNA is a new benchmark for testing whether LLM unlearning methods actually erase sensitive data from model parameters or just hide it. The researchers inject fake personal information into specific weights of language models, then check if unlearning methods successfully target those exact parameters.