Feeding AI "Noise" Can Also Boost Scores, This Work Enables Positive Transfer with Noise

marsbit发布于2026-07-22更新于2026-07-22

文章摘要

Feeding "Noise" to AI Can Improve Performance: A Method Enables Positive Transfer from Noise This work, Semi-Supervised Noise Adaptation (SSNA), introduces a Noise Adaptation Framework (NAF) that challenges traditional transfer learning. Instead of requiring a labeled source domain of real data (e.g., images, text), NAF uses randomly generated Gaussian noise as the source. For a target task with C classes, it constructs C noise clusters by sampling from Gaussian distributions. Although this synthetic noise contains no semantic meaning, NAF trains it to form a discriminative class structure in a shared representation space—clustering same-class noise and separating different classes. The key is aligning this learned structure from the noise domain to the real, sparsely labeled target domain. A small number of target labels are still essential to establish the correspondence between noise clusters and actual classes. The training objective combines: 1) supervised loss on the few labeled target samples, 2) classification loss for the noise to build its structure, and 3) a distribution alignment loss (using Negative Domain Similarity) to minimize the gap between the noise and target domains in the shared space. Experiments show significant gains in few-label settings. With just 4 labels per class, NAF with a ResNet-18 backbone improves accuracy over a standard supervised baseline (ERM) by +12.35% on CIFAR-10, +7.61% on CIFAR-100, +4.38% on DTD-47, and +2.74% on Caltech-101. It...

The "source data" in transfer learning doesn't necessarily have to be images, text, or audio.

A set of noise randomly sampled from a Gaussian distribution, devoid of any semantics, can also help models learn better with limited annotations.

This work is called Semi-Supervised Noise Adaptation (SSNA), and the paper has been published at ICML 2026.

The SSNA team further proposes the Noise Adaptation Framework (NAF). It uses randomly generated noise to construct discriminative class structures and transfers this structure to real target data, thereby improving the learning effectiveness of models in scenarios with limited annotations.

NAF projects the noise domain and the target domain into a shared representation space and performs alignment at the class level. Image from the paper.

With only 4 labeled samples per class, based on the ResNet-18 backbone network, NAF achieved accuracy improvements of 12.35, 7.61, 4.38, and 2.74 percentage points on CIFAR-10, CIFAR-100, DTD-47, and Caltech-101 respectively, compared to the standard supervised learning baseline ERM (Empirical Risk Minimization) trained using only labeled samples. The paper's source code is now open-sourced; see the end of the article for details.

Replacing the Real Source Domain with Noise

Traditional transfer learning typically requires a source domain with abundant labels. However, real source data is not always easy to obtain. Privacy, confidentiality, and copyright restrictions can all prevent the sharing of source domain data. SSNA attempts to remove this prerequisite: the source domain no longer contains real samples but is instead replaced by noise generated from a simple probability distribution.

The specific method is not complicated. Assuming the target task contains C classes, the research team first randomly samples a mean vector for each class in a 1024-dimensional space, using the identity matrix as the covariance, thereby constructing C Gaussian distributions. They then sample 50 noise vectors from each distribution. The noise domain and the target domain share the same set of class indices; each noise class is pre-assigned a target class index, but this correspondence itself contains no semantic information.

The indices themselves have no semantics. Noise class 0 does not inherently represent "cat"; it is simply fixed to correspond to a certain class in the target domain before training begins. What is truly transferred is not visual knowledge of cats or dogs, but the discriminative structure formed in the noise domain.

Noise of the same class is clustered together, while noise of different classes is pushed apart. As long as this structure can align with the target domain, it can provide clearer classification boundaries for real target samples.

Limited Labels Are Still Necessary

Noise can replace real source data but cannot completely replace target domain labels. The reason is straightforward: Noise comes from a different space, and the class indices are artificially assigned. The model must rely on a small number of labeled target samples to determine which real class noise class 0 should align with.

When the number of labeled samples per class is reduced to 0 on CIFAR-100, the accuracy rates of ERM and NAF are only 0.97% and 1.34% respectively, both close to random guessing. Once a few labels are provided, NAF consistently outperforms ERM.

Therefore, the conclusion of this work is: In the semi-supervised classification setting, a real source domain is not a necessary condition for achieving positive transfer.

NAF Primarily Does Three Things

Based on the generalization bound given in the paper, NAF breaks down the training objective into three parts.

First, Learn Well from a Few Real Labels

The target domain encoder maps real samples into the shared representation space, and the classifier computes the cross-entropy loss using the few labeled samples. This part is consistent with ordinary supervised learning, used to build a bridge between noise classes and real classes.

Then, Let Noise Form a Clear Class Structure

The noise projector is responsible for mapping random vectors into the same representation space, and the classifier identifies these noises according to the pre-assigned class indices. After training, noise of the same class gradually clusters together, while noise of different classes separates from each other.

Finally, Align Both Sides

NAF also calculates the distribution divergence between the noise domain and the target domain. The distribution alignment module is not limited to a specific implementation; the paper compares various schemes and empirically adopts Negative Domain Similarity (NDS) as the default mechanism in the experiments. NDS simultaneously compares the global means and the per-class means of the two domains, using cosine similarity to push them closer. The class means for unlabeled target samples are iteratively estimated using pseudo-labels generated by the model.

The overall objective can be written as

. Where,

is responsible for classifying the few real labeled target samples,

is responsible for classifying noise, and

is responsible for aligning the distributions of the target and noise domains. The generalization bound provided in the paper also corresponds to these three terms: the target domain empirical error, the noise domain empirical error, and the distribution divergence between the two domains in the shared representation space.

From CIFAR to ImageNet, Noise Can Bring Gains

The main experiments cover 8 visual datasets and 1 text classification dataset. Except for ImageNet-1K, visual tasks use 4 labeled samples per class, with the remaining training samples used as unlabeled data.

On ResNet-18, NAF's Top-1 improvements over ERM reach: CIFAR-10 +12.35, CIFAR-100 +7.61, DTD-47 +4.38, Caltech-101 +2.74 percentage points.

It is also effective for fine-grained classification. Using ResNet-18, NAF improved over ERM by 8.94, 5.51, and 7.74 percentage points on CUB-200, Oxford Flowers-102, and Stanford Cars-196 respectively.

On the larger-scale ImageNet-1K, the research team retained 100 labeled samples per class. NAF achieved 37.10% accuracy, which is 0.99 percentage points higher than ERM. On the text task AG News-4, NAF using BERT reached 82.82%, 4.18 percentage points higher than ERM's 78.64%.

NAF can also be directly plugged into existing semi-supervised methods. The paper integrated it into UDA, FixMatch, FlexMatch, DebiasMatch, DST, LERM, and SA-FixMatch, with gains observed overall. Taking the 20-epoch training results on CIFAR-10 as an example, after adding NAF, the accuracy of UDA and FixMatch improved by 20.83 and 9.91 percentage points respectively.

What's Truly Useful Is Not "Randomness", But Structure

Why can noise help? The paper's ablation experiments point to the same factor: Whether there is a separable structure between classes.

The team first collapsed all classes of noise into a single point. In this way, the noise domain completely lost its discriminative structure, and NAF not only failed to provide gains but also showed significant negative transfer. CIFAR-10 accuracy dropped from ERM's 58.15% to 33.34%, and CIFAR-100 dropped from 42.24% to 6.79%.

Conversely, when gradually increasing the distance between noise class centers, the CIFAR-100 accuracy increased from 43.80% to 49.78%. This indicates that the easier the noise classes are to distinguish, the stronger the structural guidance they can usually provide.

The amount of noise is not as critical. When the number of noise samples per class increased from 10 to 100, the accuracy remained stable at around 50%; it even slightly decreased after increasing to 200. Based on this, the paper argues that as long as a separable pattern can be formed, a small amount of noise is sufficient to be effective.

The research team also simplified the noise domain to a single center point per class. Whether the centers were fixed or learnable, the results were higher than ERM; among them, learnable centers performed better than fixed centers but still lower than the full NAF.

In the transfer experiment from Amazon to Caltech-10, real source data still slightly outperformed overall, but the noise source domain was already able to increase accuracy from ERM's 83.51% to about 88% to 89%. This provides a more realistic positioning: when real source data is unavailable, synthetic noise can be a very low-cost alternative.

It also differs from common data augmentation. Data augmentation typically performs rotations, crops, interpolation, or generation around real samples; SSNA first constructs an independent noise domain and then completes cross-domain alignment in the representation space.

Summary: Even Without Semantics, Structure Can Still Be Transferred

This work provides a rather counter-intuitive new perspective for transfer learning: The ability of source data to help a target task does not necessarily rely entirely on its real semantics; the class structure formed in the representation space can also become transferable knowledge.

NAF leverages this very point, allowing random noise to form a discriminative structure in the shared representation space, and then using a few labeled samples to transfer it to real data. Experimental results show that even if the source domain contains no real images, text, or audio, as long as an appropriate class structure is retained, it can still have a positive effect on the target task.

In other words, what transfer learning transfers may not only be "what the data says" but also "how the data is organized in the representation space." This also opens a new research direction for scenarios with privacy restrictions, copyright sensitivities, or difficulties in obtaining real source data.

Paper Title: Semi-Supervised Noise Adaptation: Transferring Knowledge from Noise Domain

Paper Address: https://arxiv.org/pdf/2606.00558

Source Code Address: https://github.com/AIResearch-Group/SSNA

Video Explanation: https://www.bilibili.com/video/BV1UV7h61EvW/

This article is from the WeChat public account "Quantum Bits", author: SSNA Team

热门币种推荐

相关问答

QWhat is the core concept of the Semi-Supervised Noise Adaptation (SSNA) method introduced in the article?

AThe core concept is to replace the traditional labeled source domain in transfer learning with randomly generated noise from simple probability distributions. This noise, which has no real-world semantic meaning, can still improve model performance in few-shot learning scenarios by forming a discriminative class structure in a shared representation space, which is then transferred and aligned with the real target domain data.

QAccording to the article, what are the three main tasks performed by the Noise Adaptation Framework (NAF)?

AThe Noise Adaptation Framework (NAF) performs three main tasks: 1) Learning from the few real labeled target samples using a standard cross-entropy loss. 2) Training the noise projector to map random noise vectors into a shared representation space, where the classifier learns to separate them into distinct, pre-defined noise classes, forming a clear class structure. 3) Aligning the distributions of the noise domain and the target domain in the shared representation space, for which the paper empirically uses a Negative Domain Similarity (NDS) mechanism.

QWhy are a few labeled target samples still necessary in the SSNA approach, even when using a noise source domain?

AA few labeled target samples are necessary because the noise originates from a different space and its class indices are arbitrarily assigned. The model needs these labeled samples to establish a bridge and learn which pre-defined noise class (e.g., 'noise class 0') corresponds to which real-world category in the target domain (e.g., 'cat'). Without this alignment, the structural knowledge from the noise cannot be effectively transferred.

QWhat is the key factor that enables random noise to be helpful, according to the ablation studies mentioned in the article?

AThe key factor is whether the noise has a separable class structure. Experiments showed that when all noise classes were collapsed into a single point (losing structure), performance dropped significantly (negative transfer). Conversely, increasing the separation distance between noise class centers improved accuracy. The quantity of noise per class was less critical, as long as a discriminative pattern was formed.

QHow does the SSNA/NAF approach differ from conventional data augmentation techniques?

ASSNA/NAF differs from conventional data augmentation in its fundamental approach. Data augmentation typically applies transformations (e.g., rotation, cropping) to existing real samples to create variations. In contrast, SSNA first constructs an entirely independent synthetic domain from random noise distributions, then learns to project both this noise domain and the real target domain into a shared representation space, finally aligning their distributions at a structural level.

你可能也喜欢

交易

现货

热门文章

从H2A到A2A:AI Agent经济体与Crypto新机遇

6月17日,哈佛大学独立研究员、美国AI科学院(NAAI)通讯院士、比特币基金会终身会员韩锋做客火币HTX《大咖讲堂》第三期,以《从H2A到A2A》为主题,分享了其对Agent经济、Crypto基础设施及数字社会未来发展的思考。

364人学过发布于 2026.07.01更新于 2026.07.01

从H2A到A2A:AI Agent经济体与Crypto新机遇

美股TradFi:传统金融在AI IPO浪潮下的稳健锚点

2026年,美股IPO市场重回高热度。本文梳理即将上线或受关注的热门赛道龙头,分析具备投资潜力的交易标的及其逻辑,并探讨宏观趋势与相关风险。

2.3k人学过发布于 2026.07.08更新于 2026.07.08

美股TradFi:传统金融在AI IPO浪潮下的稳健锚点

相关讨论

欢迎来到HTX社区。在这里,您可以了解最新的平台发展动态并获得专业的市场意见。以下是用户对AI(AI)币价的意见。

活动图片