TLDR: A new research paper introduces NOODLE, a framework to improve Out-of-Distribution (OOD) detection in AI systems, especially when training data contains noisy labels. It combines loss correction techniques with a novel low-rank and sparse decomposition method to “clean” the feature representations learned by AI models. This approach helps models better distinguish between familiar and unfamiliar data, even under severe label noise, significantly outperforming existing methods and making AI systems more reliable in real-world applications.
Artificial intelligence models have achieved incredible feats across many domains, from recognizing objects in images to understanding human language. However, a significant challenge arises when these models encounter data that is different from what they were trained on. This is known as Out-of-Distribution (OOD) detection, and it’s crucial for building trustworthy AI systems, especially in critical applications like self-driving cars or medical diagnostics where making confident predictions on unfamiliar inputs could be dangerous.
Most existing OOD detection methods assume that the AI models are trained on perfectly clean, correctly labeled data. But in the real world, this is rarely the case. Training datasets often contain ‘label noise’ – instances where the provided label for a piece of data is incorrect. This label noise can come from various sources, such as human annotator errors or automated labeling processes. Recent studies have shown that even a small amount of label noise can severely degrade an AI model’s ability to detect OOD inputs, creating a significant hurdle for real-world deployment.
Researchers have tried combining existing methods for handling noisy labels with OOD detection strategies, but these attempts have largely fallen short. The core issue is a misalignment of objectives: traditional label noise methods focus on correcting the model’s prediction probabilities within the known data distribution, while effective OOD detection requires learning distinct and well-separated feature representations that clearly differentiate familiar (in-distribution) data from unfamiliar (out-of-distribution) data.
Introducing NOODLE: A Novel Approach to Robust OOD Detection
A new research paper, titled “Tackling the Noisy Elephant in the Room: Label Noise-robust Out-of-Distribution Detection via Loss Correction and Low-rank Decomposition,” introduces a novel framework called NOODLE (Noise-robust Out-Of-Distribution Learning) to address this critical gap. This framework offers a principled solution by integrating two powerful techniques: loss correction and low-rank and sparse decomposition.
Think of it this way: when an AI model learns from noisy data, its internal representation of that data can become messy and jumbled. In a clean dataset, data points belonging to the same category tend to cluster together, forming clear, distinct groups. Label noise distorts these clusters, making it harder for the model to tell what’s ‘normal’ and what’s ‘abnormal’ or OOD.
NOODLE tackles this problem in two main steps:
1. Loss Correction: First, it employs techniques from the noisy label learning field to mitigate the immediate impact of incorrect labels during the training process. These methods modify how the model learns, helping it to be less sensitive to mislabeled examples. However, as noted earlier, these primarily correct the final prediction, not necessarily the underlying feature representations.
2. Low-rank and Sparse Decomposition for Feature Cleaning: This is where NOODLE introduces its key innovation. The framework recognizes that well-structured, in-distribution data naturally exhibits a ‘low-rank’ property, meaning its feature representations can be simplified into a more fundamental, organized structure. NOODLE actively encourages this low-rank structure in the learned features during training. It decomposes the model’s internal feature representations into two parts: a ‘low-rank’ component that captures the clean, underlying structure of the in-distribution data, and a ‘sparse’ component that accounts for outliers and noise. By focusing on the cleaned, low-rank features, the model can form much tighter and more distinct clusters for its known data, making it easier to spot anything that doesn’t fit this organized pattern.
Once the model is trained with these refined feature representations, NOODLE uses standard distance-based metrics, such as k-nearest neighbor (kNN) or Mahalanobis distance, to effectively score how likely a new input is to be out-of-distribution. Because the in-distribution features are now much cleaner and more separated, these scores become far more reliable.
Also Read:
- ClaFR: A Simple and Efficient Method for Detecting Unfamiliar Data in AI Models
- The Hidden Challenge of AI: Generalizing Attributes Beyond Familiar Categories
Impressive Results on Noisy Data
The researchers conducted extensive experiments on both synthetic (artificially generated) and real-world noisy datasets, including CIFAR-10, CIFAR-10N, CIFAR-100N, and Animal-10N. They compared NOODLE against numerous state-of-the-art OOD detection methods and label noise-robust techniques.
The results were compelling: NOODLE consistently and significantly outperformed all other approaches, particularly under severe noisy label settings. For instance, at a 50% noise rate on CIFAR-10, NOODLE achieved a substantial reduction in the False Positive Rate (FPR@95), meaning it was much better at correctly identifying OOD samples without mistakenly flagging in-distribution samples. Visualizations of the learned features also confirmed NOODLE’s effectiveness, showing that it produced more compact and well-separated clusters for in-distribution and OOD samples compared to other methods.
This work represents a crucial step forward in making AI systems more robust and trustworthy in real-world environments where perfect data is a luxury. By effectively tackling the “noisy elephant in the room,” NOODLE paves the way for more reliable AI applications in safety-critical domains. You can read the full research paper here: Tackling the Noisy Elephant in the Room.


