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

marsbitPublished on 2026-07-22Last updated on 2026-07-22

Abstract

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

Trending Cryptos

Related Questions

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.

Related Reads

After Three Consecutive Quarters of Decline, Can the Crypto Market Find a Window for Stabilization in Q3?

The cryptocurrency market has just concluded its worst-performing quarter since 2022, with total capitalization dropping 12.6% to $2.1 trillion. All core metrics indicate capital is leaving the sector, not just rotating within it. Bitcoin fell 14.2% and Ethereum dropped 25.4% in Q2, breaking their previous correlation with US tech stocks. A key driver is the reversal in US spot Bitcoin ETF flows, which saw a net outflow of approximately $4.67 billion in Q2, including a record monthly outflow near $4.5 billion in June. While recent data suggests long-term holders are accumulating again, sustained ETF outflows mean continued selling pressure. Market focus is now singularly on the Federal Reserve. The upcoming July FOMC meeting is seen as the most critical event for Q3. A dovish signal could support Bitcoin reclaiming a $68,000-$84,000 range, while a hawkish stance might establish a new trading band around $50,000-$56,000. Additionally, regulatory uncertainty persists, with the progress of the crucial *CLARITY Act* stalling in the Senate, reducing its perceived 2026 passage probability to 40-45%. Despite the broad downturn, a few sectors showed growth. Prediction markets saw nominal volume surge 48.7% year-over-year to $113.8 billion, and tokenized collectibles transaction volume rose 143% quarterly to $1.4 billion. The Real-World Asset (RWA) tokenization sector also continued steady growth, now representing ~$28.1 billion in on-chain value. The market's foundation for an extreme crash appears limited, with Bitcoin price hovering near its 200-week moving average. However, the trading paradigm has shifted from narrative-driven speculation to decisions based on price action, policy developments, and interest rate expectations, making a broad sentiment-driven rally unlikely in the near term.

marsbit15m ago

After Three Consecutive Quarters of Decline, Can the Crypto Market Find a Window for Stabilization in Q3?

marsbit15m ago

BIT Trading Moment: BTC Still Suppressed by Weekly 200 EMA, Rejection May Restart Decline; Storage and Semiconductors that Surged Last Night Begin Falling in Evening Trading

**Crypto & Stock Market Wrap: Bitcoin Tests Resistance, Stocks Retreat After AI Surge** Bitcoin consolidates around $66,000, facing key resistance near $68,000—an area seen as a major psychological and technical hurdle where previous rallies have failed. Analysts note the cryptocurrency is caught between its 200-week moving average (~$63,333) and 200-week EMA (~$68,328). A clear break above $68k is needed to signal a stronger bullish trend, while a rejection could lead to a retest of $63k support. Market sentiment remains cautious, with low futures open interest pointing to a low-liquidity rebound rather than a full bull market. Bitcoin spot ETFs saw another $203 million inflow. US stock futures pointed lower after a strong Tuesday session led by a massive rebound in semiconductors and memory stocks. The rally was fueled by renewed optimism about AI-driven hardware demand, with Micron, SanDisk, and SK Hynix surging. However, those gains reversed in pre-market trading. Super Micro Computer (SMCI) soared over 20% after hours on strong guidance and a record backlog. Other standouts included Rocket Lab and nuclear energy plays Oklo and X-Energy. Rising oil prices (Brent above $91) and climbing Treasury yields (10-year near 4.64%), however, are reigniting inflation concerns and acting as a headwind for equities. In Asia, markets were mixed. South Korea's KOSPI pared early gains to close slightly higher as semiconductor stocks like SK Hynix gave back initial surges. Japan's Nikkei edged lower as the yen hit a fresh 38-year low against the dollar, raising fears of potential market intervention. Key events to watch include the Samsung Galaxy launch, AMD's AI event, and a slew of major tech earnings from Alphabet, Tesla, and IBM after the close on Wednesday, followed by the ECB meeting and Intel's earnings on Thursday.

marsbit23m ago

BIT Trading Moment: BTC Still Suppressed by Weekly 200 EMA, Rejection May Restart Decline; Storage and Semiconductors that Surged Last Night Begin Falling in Evening Trading

marsbit23m ago

Former CFTC Chairman, Circle President Tarbert: Preaching Long-Termism While Cashing Out $30 Million Himself

Former CFTC Chairman and Circle President Heath Tarbert has consistently advocated for a long-term vision in public, urging patience from investors as Circle’s stock price has fallen significantly from its peak. However, it has been revealed that since Circle’s IPO, Tarbert has continuously sold his CRCL shares through pre-arranged trading plans, cashing out approximately $30 million, without making any public market purchases. This contrast between his public messaging and personal actions has drawn criticism. Tarbert joined Circle in July 2023 as Chief Legal Officer, leveraging his regulatory experience to help guide the company through its IPO and expansion. Despite promoting stablecoins as long-term infrastructure, he established a 10b5-1 trading plan just before Circle went public, leading to substantial stock sales over the following year. In March 2026, he initiated another plan to sell more shares. His career trajectory highlights a pattern of moving between high-level regulatory roles and influential positions in the financial sector. After resigning as CFTC Chairman in early 2021, he joined Citadel Securities as Chief Legal Officer just 27 days later, during a period of intense regulatory scrutiny for the firm. He later joined Circle, aiding its efforts to navigate regulatory challenges for its public listing. While Tarbert's expertise in policy and compliance is valuable to companies like Circle, his actions—advocating long-term confidence while personally divesting—raise questions about the alignment between his public statements and his private financial decisions, leaving investors who followed his advice to bear the market risks.

marsbit46m ago

Former CFTC Chairman, Circle President Tarbert: Preaching Long-Termism While Cashing Out $30 Million Himself

marsbit46m ago

Gate Research Institute: The 'Wall Street-ization' Wave of Crypto Financial Products – Competition or Integration?

The article titled "Gate Research Institute: Are Crypto Financial Products Sparking a 'Wall Street' Wave—Competition or Convergence?" explores the evolving relationship between the crypto ecosystem and traditional finance (TradFi). The piece begins by reflecting on Bitcoin's original 2009 vision of decentralization, disintermediation, and moving away from banks. It then contrasts this with the 2024 landscape, where key crypto assets like Bitcoin are increasingly held through Wall Street products like ETFs issued by giants like BlackRock. The article questions whether this signifies that TradFi is systematically taking over the rights to issue, price, custody, and distribute crypto financial assets. The core argument is that this is not a zero-sum takeover but rather a bidirectional convergence where each side addresses the other's weaknesses. Crypto offers 24/7 global markets, programmable settlement, and open access but lacks compliant channels, institutional-grade custody, deep fiat liquidity, and mainstream distribution. TradFi possesses these but is constrained by legacy systems, limited operating hours, and slow settlement. Two primary convergence paths are highlighted: * **Path A (CEX to TradFi):** Exemplified by Gate, which has progressed from offering tokenized stocks and CFDs to providing direct, real stock trading (US, Hong Kong, South Korea) within its platform, using USDT. * **Path B (TradFi to Crypto):** Exemplified by Robinhood, which has integrated crypto trading, acquired exchanges like Bitstamp, and is moving traditional assets like stocks onto the blockchain via tokenization and its own Layer 2. Both paths are ultimately competing to become the next-generation, unified financial account—a "super account" where users can seamlessly trade cryptocurrencies, stocks, ETFs, RWA (Real World Assets), and tokenized treasury products in one interface. The growth of RWA and tokenized treasuries (e.g., BlackRock's BUIDL) is presented as the asset-layer fusion, providing stable, yield-bearing assets on-chain and acting as a bridge between the two worlds. In conclusion, the "Wall Street-ization" of crypto is framed as a mutual transformation. Decentralized ideals persist in the protocol layer, while at the application layer, a more efficient, global, and accessible unified capital market is emerging from this convergence. The future competition lies not between crypto exchanges and stockbrokers, but between platforms vying to offer the most comprehensive asset coverage, liquidity, and user experience within a single account.

marsbit50m ago

Gate Research Institute: The 'Wall Street-ization' Wave of Crypto Financial Products – Competition or Integration?

marsbit50m ago

Trading

Spot

Hot Articles

Discussions

Welcome to the HTX Community. Here, you can stay informed about the latest platform developments and gain access to professional market insights. Users' opinions on the price of AI (AI) are presented below.

活动图片