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.

Похожее

После трёх кварталов падения: получится ли у крипторынка стабилизироваться в третьем квартале?

Криптовалютный рынок пережил худший квартал с 2022 года, общая капитализация упала на 12,6% до $2,1 трлн, а дневные объемы торгов снизились на 20,9%. Впервые за три года сократилась и капитализация стейблкоинов. Основные факторы спада — отток средств из биткоин-ETF, распродажа биткоинов корпоративным казначейством Strategy и ужесточение монетарной политики ФРС. Второй квартал завершился чистым оттоком $46,7 млрд из ETF, при этом в июне отток достиг рекордных $45 млрд. Ключевым событием третьего квартала станет заседание ФРС 28–29 июля. Мягкий сигнал может поддержать биткоин в диапазоне $68 000–84 000 и вернуть приток в ETF, тогда как жесткая риторика способна сместить торговый диапазон к $50 000–56 000. Законодательная неопределенность также давит на рынок: прогресс по закону CLARITY Act, определяющему регуляторные границы, замедлился, и вероятность его принятия в 2026 году упала до 40–45%. Несмотря на общий спад, два сегмента показали рост: объемы на рынках предсказаний выросли на 48,7%, а торговля токенизированными коллекционными предметами увеличилась на 143%. Сектор RWA продолжает стабильно развиваться, достигнув $28,1 млрд. Рынок, вероятно, миновал фазу острой распродажи, но для устойчивого восстановления необходимы ясность от ФРС и регуляторный прогресс.

marsbitВчера 08:38

После трёх кварталов падения: получится ли у крипторынка стабилизироваться в третьем квартале?

marsbitВчера 08:38

BIT Торговые часы: BTC по-прежнему под давлением 200 EMA на недельном графике, после отскока возможен перезапуск нисходящего движения; секторы хранения данных и полупроводников, выросшие ночью, начали падение в вечерней сессии

**Краткий обзор рынка: BTC под давлением, коррекция на рынке акций, внимание к данным и событиям** Рынок криптовалют демонстрирует осторожное восстановление. Bitcoin торгуется около $66 000, сталкиваясь со значительным сопротивлением в районе $68 000, где сосредоточены объемные "застрявшие" позиции. Ключевые технические уровни — 200-недельная скользящая средняя (~$63 333) и 200-недельная EMA (~$68 328). Аналитики отмечают низкую ликвидность, характерную для летнего периода. На фондовом рынке после сильного роста во вторник наблюдается коррекция. Фьючерсы на основные индексы США снижаются. Акции полупроводниковой и памяти, которые резко выросли накануне, падают в ночных торгах. Исключением стал SMCI, который вырос более чем на 15% после оптимистичного прогноза. На общий настрой негативно влияют рост цен на нефть (более $91 за баррель Brent) и доходности государственных облигаций США (10-летние — около 4,64%), что возрождает инфляционные опасения. Азиатские рынки показали нестабильную динамику. Индекс KOSPI в Корее вырос на 0,74%, а японский Nikkei 225 снизился на 0,18%. Основной риск для региона — ослабление японской иены до минимумов с 1986 года, что повышает вероятность вмешательства властей. **Ключевые события для наблюдения:** * **24 июля:** Финансовые отчеты Alphabet (Google), Tesla, IBM. Событие AMD, посвященное ИИ. * **25 июля:** Решение по процентной ставке ЕЦБ и пресс-конференция Кристин Лагард. Финансовые отчеты Intel, American Airlines, Honeywell и других. Данные по числу первичных заявок на пособие по безработице в США.

marsbitВчера 08:30

BIT Торговые часы: BTC по-прежнему под давлением 200 EMA на недельном графике, после отскока возможен перезапуск нисходящего движения; секторы хранения данных и полупроводников, выросшие ночью, начали падение в вечерней сессии

marsbitВчера 08:30

Бывший глава CFTC и президент Circle Тарберт: призывает к долгосрочной стратегии, но сам выводит $30 млн

Бывший председатель CFTC и президент Circle Хит Тарберт, публично пропагандируя долгосрочное видение компании для инвесторов на фоне падения акций на 70% с пиковых значений, сам активно распродавал свои акции CRCL. С момента IPO Circle он по плану 10b5-1 продал более 360 тысяч акций, выручив около 30 миллионов долларов, и при этом ни разу не докупал акции на открытом рынке. Эта разница между его публичными заявлениями и личными действиями вызвала критику. Карьера Тарберта демонстрирует классическое использование «вращающейся двери» между регулирующими органами и частным сектором. Уйдя с поста председателя CFTC в 2021 году, через 27 дней он занял должность главного юрисконсульта в маркет-мейкере Citadel Securities, который в тот момент находился под пристальным вниманием из-за скандала с акциями GameStop. Позже, уже работая в Citadel, Тарберт выступал за расширение полномочий CFTC на крипторынок, в то время как его работодатель планировал выход на этот рынок. В 2023 году Тарберт присоединился к Circle, где его опыт и связи сыграли ключевую роль в успешном проведении IPO компании в 2025 году. Однако его последующие массовые продажи акций, совпавшие с падением котировок и его же призывами к долгосрочным инвестициям, ставят под сомнение искренность его уверенности в будущем компании. Критики видят в его карьере образец превращения регуляторного опыта и политических связей в личную выгоду, в то время как риски несут обычные инвесторы, верящие его нарративам.

marsbitВчера 08:07

Бывший глава CFTC и президент Circle Тарберт: призывает к долгосрочной стратегии, но сам выводит $30 млн

marsbitВчера 08:07

Gate Research: Взлет «уолл-стритизации» криптофинансовых продуктов — это конкуренция или интеграция?

**Аналитический обзор Gate Research Institute: Волна "уолл-стритизации" криптофинансовых продуктов — конкуренция или интеграция?** Создание биткоина в 2009 году было ответом на финансовый кризис и стремлением построить децентрализованную систему без доверенных посредников. Однако к 2026 году значительная часть биткоинов (около 7,14%) хранится через ETF таких гигантов, как BlackRock. Это символизирует глубокую интеграцию традиционных финансов (TradFi) и крипторынка. С появлением биткоин-ETF, фьючерсов, RWA (токенизированных реальных активов) и государственных облигаций на блокчейне, традиционные институты получают всё больше влияния на выпуск, ценообразование, кастодию и дистрибуцию криптоактивов. Однако это не одностороннее поглощение, а взаимодополняющая конвергенция. Криптосфера приносит TradFi глобальную 24/7 ликвидность и программируемость, а TradFi предоставляет криптосфере регулируемые каналы, институциональное доверие и массовый доступ. Яркий пример — две противоположные, но ведущие к одной цели траектории: * **Путь А:** Криптобиржи, такие как Gate, начинают с токенизированных акций и CFD, а затем напрямую подключаются к инфраструктуре традиционных брокеров, предлагая реальную торговлю акциями США, Гонконга и Кореи за стейблкоины. * **Путь Б:** Традиционные брокеры, такие как Robinhood, интегрируют криптоактивы, а затем создают собственные Layer 2 для токенизации своих акций, стремясь к круглосуточной торговле. Обе стратегии нацелены на создание **универсального финансового аккаунта будущего** — единой точки доступа к акциям, криптовалютам, ETF, токенизированным облигациям и другим активам. Ключевой конкурентной борьбой становится не между CEX и брокерами, а между этими "супераккаунтами". Параллельно, слой RWA и токенизированных гособлигаций растёт даже на медвежьем рынке, становясь "прослойкой" для объединения капиталов. Хотя этот рынок (около $150 млрд токенизированных казначейских облигаций) ещё мал по сравнению с традиционным ($30 трлн), он демонстрирует устойчивый структурный тренд, привлекающий крупнейшие финансовые институты (JPMorgan, DTCC и др.). **Вывод:** "Уолл-стритизация" — это не поражение идеалов децентрализации, а формирование новой гибридной модели. Децентрализованные протоколы продолжают работать на базовом уровне, в то время как на уровне приложений и пользовательского опыта формируется более эффективный, глобальный и свободный объединённый рынок капитала, где активы TradFi и DeFi торгуются бок о бок в одном интерфейсе. Уолл-стрит не завоевала криптосферу, а криптосфера не обошла Уолл-стрит — они совместно строят новые финансовые рельсы.

marsbitВчера 08:04

Gate Research: Взлет «уолл-стритизации» криптофинансовых продуктов — это конкуренция или интеграция?

marsbitВчера 08:04

S&P Dow Jones и Pantera выпускают криптоиндекс, биткоин оставлен за бортом из-за «отсутствия прибыли»

Стандард энд Пурс (S&P Dow Jones Indices) совместно с Pantera Capital запускает индекс S&P Pantera Digital Asset Index. Новый индекс включает 18 токенов, но исключает биткоин, XRP и мем-токены. Критерием отбора послужила «финансовая жизнеспособность», по аналогии с S&P 500: протокол должен демонстрировать положительный доход в течение нескольких кварталов и распределять стоимость среди держателей токенов. Это первое применение фундаментального подхода к оценке криптоактивов со стороны крупнейшего в мире провайдера индексов. В первую пятерку активов вошли Ethereum (ETH), BNB, Solana (SOL), TRON (TRX) и Hyperliquid (HYPE). Pantera отмечает, что совокупный годовой доход всех протоколов индекса превышает $30 млрд. Биткоин был исключен по трем причинам: он рассматривается как монетарный актив, доступный через отдельные ETF; он не генерирует доход протокола; а смешивание его в индексе с доходными активами затрудняет фундаментальный анализ для институциональных инвесторов. Пока индекс является эталонным, но Pantera ведет переговоры о создании на его основе ETF и других инвестиционных продуктов. Компания также отмечает значительный разрыв на рынке: многие институциональные инвесторы готовы к аллокации в криптоактивы, но им не хватает структурированных продуктов, фокусирующихся на активах с реальной экономической деятельностью.

marsbitВчера 08:02

S&P Dow Jones и Pantera выпускают криптоиндекс, биткоин оставлен за бортом из-за «отсутствия прибыли»

marsbitВчера 08:02

Торговля

Спот

Популярные статьи

Неделя обучения по популярным токенам (2): 2026 может стать годом приложений реального времени, сектор AI продолжает оставаться в тренде

2025 год — год институциональных инвесторов, в будущем он будет доминировать в приложениях реального времени.

1.9k просмотров всегоОпубликовано 2025.12.16Обновлено 2025.12.16

Неделя обучения по популярным токенам (2): 2026 может стать годом приложений реального времени, сектор AI продолжает оставаться в тренде

Обсуждения

Добро пожаловать в Сообщество HTX. Здесь вы сможете быть в курсе последних новостей о развитии платформы и получить доступ к профессиональной аналитической информации о рынке. Мнения пользователей о цене на AI (AI) представлены ниже.

活动图片