← Latest papers
🤖 machine learning

ASAT: Adaptive Scoring and Thresholding with Human Feedback for Robust Out-of-Distribution Detection

This paper proposes ASAT, a human-in-the-loop framework that dynamically adapts scoring functions and thresholds using real-world out-of-distribution feedback to maximize true positive rates while strictly controlling false positive rates, thereby outperforming existing methods in robust OOD detection.

Original authors: Daisuke Yamada, Harit Vishwakarma, Ramya Korlakai Vinayak

Published 2026-08-07
📖 8 min read🧠 Deep dive

Original authors: Daisuke Yamada, Harit Vishwakarma, Ramya Korlakai Vinayak

Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

Imagine you are the captain of a spaceship navigating through a dense, foggy asteroid field. Your ship's computer is incredibly smart, but it was only trained to recognize the specific shapes of asteroids it saw during its training camp. Now, as you fly deeper into space, you start encountering strange, new objects: floating ice cubes, glowing jellyfish, and metallic clouds. These are "out-of-distribution" (OOD) inputs—things the computer has never seen before. If the computer mistakes a dangerous, unknown object for a safe asteroid, your ship could crash. This is the core problem of Out-of-Distribution (OOD) detection: teaching AI to say, "I don't know what this is," instead of guessing and potentially making a fatal error.

To solve this, scientists usually build a "scorecard" system. The computer gives every object a score: high scores mean "I'm sure this is a normal asteroid," and low scores mean "This looks weird." They then draw a line, called a threshold, to decide when to sound the alarm. If the score is below the line, they stop and ask a human expert for help. The tricky part is setting that line. If you set it too high, you might miss dangerous objects (a "false negative"). If you set it too low, you might stop the ship for every little pebble, wasting time and fuel (a "false positive"). In safety-critical jobs like medical diagnosis or self-driving cars, a false positive can be just as bad as a false negative; you don't want a doctor to tell a healthy patient they have cancer, nor do you want a car to ignore a real obstacle.

This paper, titled ASAT, tackles the problem of how to keep that scorecard and the alarm line perfect, even as the universe changes around the ship. The authors, Daisuke Yamada, Harit Vishwakarma, and Ramya Korlakai Vinayak, propose a new system that doesn't just set a rule and forget it. Instead, they created a "human-in-the-loop" framework that learns on the fly. They found that old methods, which rely on a fixed scorecard and a static line, often fail when the "weird" objects change over time. Their new approach, ASAT, constantly updates both the scorecard and the alarm line based on real-time feedback from human experts, ensuring the system stays safe while becoming smarter.

The Problem with "Set It and Forget It"

Imagine you are a security guard at a museum. You are given a list of famous paintings (the "in-distribution" or ID data) and told to stop anyone holding a fake. You create a rule: "If the painting looks more than 95% like a real one, let them pass." This is how most current AI systems work. They are trained on known data, and they set a threshold to catch 95% of the real stuff.

But here is the catch: the paper points out that this method leaves a huge hole in your security. While you are busy catching 95% of the real paintings, you might accidentally let in 90% of the fakes because your rule was too loose on the "weird" side. In the world of AI, this is called a high False Positive Rate (FPR). In a medical context, this means the AI might tell a healthy person they have a tumor, causing unnecessary panic and expensive tests. The paper argues that simply aiming for a high "True Positive Rate" (catching the good stuff) without strictly controlling the "False Positive Rate" (not crying wolf) is dangerous.

Furthermore, the old way is rigid. Imagine the museum starts receiving a new type of fake: holograms. Your old rule, designed for paper forgeries, might not work on holograms at all. The system gets stuck, unable to adapt because it was never taught to change its rules once the doors opened.

Enter ASAT: The Adaptive Security Guard

The authors propose ASAT (Adaptive Scoring and Thresholding with Human Feedback). Think of ASAT not as a robot with a static rulebook, but as a detective who learns from every case.

Here is how the magic happens:

  1. The Scorecard (Scoring Function): Instead of using a fixed formula to judge how "weird" an object is, ASAT can rewrite its own formula. If it keeps misidentifying a specific type of weird object, it asks a human expert, "Hey, is this a fake?" If the human says, "Yes, that's a hologram," ASAT updates its internal scorecard to recognize holograms better next time.
  2. The Alarm Line (Threshold): The line that decides when to stop the ship isn't static either. ASAT moves this line up or down to ensure that it never lets more than a tiny, safe percentage of fakes through (strictly controlling the FPR).
  3. The Human Loop: The system is smart enough to know when it's unsure. If an object is right on the edge of the alarm line, ASAT pauses and asks a human for the true label. This human feedback is the fuel that powers the updates.

The paper demonstrates that ASAT is a "human-in-the-loop" framework. It doesn't just guess; it learns. When a new type of OOD data appears (like the holograms), ASAT adapts its scoring function and threshold simultaneously.

What They Found: Smarter and Safer

The researchers tested ASAT on a famous benchmark called OpenOOD, using datasets like CIFAR-10 (which acts as the "normal" data) and various other datasets as the "weird" data. They compared ASAT against two other methods:

  • FSFT: A fixed scorecard and a fixed threshold (the old, rigid way).
  • FSAT: A fixed scorecard but an adaptive threshold (a middle ground).

In their experiments, the results were clear. The old fixed methods (FSFT) often had very high false positive rates, sometimes letting in between 32% and 91% of the "weird" data as if it were normal. This is a disaster for safety. The FSAT method did better at controlling the false alarms, but because it couldn't change its scorecard, it missed out on catching many of the "weird" objects that a smarter system could have identified.

ASAT, however, managed to do both. It kept the false positive rate strictly below the target of 5% (the safety limit) while significantly improving the True Positive Rate. In some tests, ASAT improved the ability to catch the "weird" objects by over 40% compared to the best fixed methods.

The paper also looked at what happens when the "weird" objects suddenly change (a non-stationary setting). Imagine the museum switches from paper fakes to holograms overnight. The old systems get confused and start letting fakes through. ASAT, however, quickly realizes the pattern has shifted. It uses the new human feedback to update its scorecard and threshold, getting back to a safe state with only a brief, temporary spike in errors before it adapts.

The Safety Net: How They Know It Works

You might wonder, "If the system is changing its own rules, how do we know it won't break?" The authors didn't just run simulations and hope for the best; they built a mathematical safety net. They proved theoretically that as long as the "weird" objects stay the same for a while (stationary conditions), ASAT will guarantee that the false positive rate stays below the user's limit (e.g., 5%) at all times.

They used a clever statistical tool called a "time-uniform confidence sequence." Imagine a safety net that stretches and shrinks as you walk across a tightrope. Even as the system learns and changes, this mathematical net ensures that the probability of falling (making a mistake) never exceeds the safe limit. They showed that even though the system is learning from data that depends on its own previous decisions (a tricky situation for math), the safety guarantee holds up.

The Bottom Line

The paper concludes that ASAT is a powerful step forward for AI safety. It solves the two biggest headaches of current OOD detection: the tendency to have too many false alarms, and the inability to learn from new, unseen threats. By letting the system adapt its "scorecard" and "alarm line" with the help of human experts, ASAT creates a system that is not only safer but also more efficient, needing less human intervention over time because it gets better at doing its job.

While the authors note that their current guarantees rely on the "weird" data staying somewhat consistent, and that noisy human feedback could be a challenge, they have laid the groundwork for a future where AI systems can safely navigate the unknown, learning and adapting in real-time without losing their safety guardrails.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →