Этот сайт использует файлы cookies. Продолжая просмотр страниц сайта, вы соглашаетесь с использованием файлов cookies. Если вам нужна дополнительная информация, пожалуйста, посетите страницу Политика файлов Cookie
Subscribe
Прямой эфир
Cryptocurrencies: 8166 / Markets: 114558
Market Cap: $ 2 784 296 055 081 / 24h Vol: $ 104 933 310 750 / BTC Dominance: 58.635473229764%

Н Новости

Как действительно понять нейронные сети и KAN на интуитивном уровне

Вот вы читаете очередную статью про KAN и ловите себя на мысли, что ничего не понимаете.

Знакомая ситуация?

Не переживайте, вы не одни. И дело тут не в вас, суть в том, что множество материалов описывают концепции по отдельности, не объединяя их в единую картину.

И чтобы решить эту проблему раз и навсегда, а также окончательно понять KAN, нам необходимо переосмыслив всё с нуля и постепенно двигаясь от базовых принципов линейной алгебры через нейронные сети. Завершив, обобщая всё с помощью множеств. В процессе мы также рассмотрим некоторые довольно уникальные и новые идеи!

Статья будет следовать данной структуре:

  1. Основные термины и концепции

  2. Объяснение многослойного персептрона (MLP)

  3. Объяснение RBF нейронной сети (RBFN) и SVM, связь с MLP

  4. Объяснение архитектуры KAN: Kolmogorov-Arnold Networks

1. Основные термины и концепции

Прежде чем переходить к нейронным сетям, важно разобраться в ключевых концепциях линейной алгебры, в этом помогут видео с канала 3Blue1Brown Русский.

1.1 Вкратце о некоторых дополнительных концепциях

Векторные пространства и подпространства

Векторное (линейное) пространство – это множество, где можно складывать векторы и умножать их на числа, следуя определённым правилам. Например, множество всех векторов на плоскости, как векторов на графике, является векторным пространством.

Векторное (линейное) подпространство (или подмножество пространства) – это часть векторного пространства, которая сама является векторным пространством. Примером может служить линия в плоскости, проходящая через начало координат, или плоскость в трёхмерном пространстве, проходящая через начало координат.

Аффинные пространства и подпространства

По словам французского математика Марселя Берже, «Аффинное пространство это не более чем векторное пространство, о начале координат которого мы пытаемся забыть, добавляя переносы (смещения) к линейным трансформациям».

T(v)=\mathbf{A}\cdot \mathbf{v} + \mathbf{b} \\ где  \ \ \mathbf{A}\cdot \mathbf{v} \ \ – \ это  \ линейное \  преобразование

Лебеговы пространства

Сейчас я приведу довольно упрощённое объяснение данных пространств.
Но главное – иметь хотя бы некоторое представление, так как они будут упоминаться в статье.

Ранее рассматривались конечномерные вещественные векторные пространства\mathbb{R}^n,где для двух векторов\mathbf{x}и\mathbf{y}метрика Минковского задаётся следующим образом:

\|\mathbf{x} - \mathbf{y}\|_p = \left( \sum_{i=1}^n |x_i - y_i|^p \right)^{\frac{1}{p}}

В частных случаях p = 1и p = 2 эта метрика соответствует манхэттенскому и евклидову расстояниям. Но нас интересует именно1 \leq p < \infty.

Норма вектора\mathbf{x}определяется как расстояние Минковского до начала координат:

\|\mathbf{x}\|_p = \left( \sum_{i=1}^n |x_i|^p \right)^{\frac{1}{p}}

При этом любой вектор с конечным числом элементов можно рассматривать как дискретную функцию, возвращающую соответствующие элементы по индексу. Это понятие можно расширить на бесконечное множество элементов, задав норму функции на множествеS:

\|f\|_p = \left( \int_S |f(x)|^p \, dx \right)^{1/p}

Кстати, думаю, очевидно, что в дискретном случае шаг по dx равен 1.

В контекстеL^p- пространств, если ограничить меру стандартной мерой Лебега (например, длина, площадь, объём) на\mathbb{R}^n,то функцияf(x)принадлежитL^p, если норма функции сходится к конечному числу:

\|f\|_p = \left( \int_S |f(x)|^p \, dx \right)^{1/p}< \infty

К тому же в общем случае должен использоваться интеграл Лебега, но для упрощения можно ограничиться наиболее распространённым определением интеграла в виде интеграла Римана, хотя это и накладывает дополнительные ограничения на множество функций.

Кроме того, можно определить расстояние между функциями:

\|f - g\|_p = \left( \int_S |f(x) - g(x)|^p \, dx \right)^{1/p}

И так же скалярное произведение, но только при p = 2,то есть в Гильбертовом пространстве:

\langle f, g \rangle = \int_S f(x) \overline{g(x)} \, dx

Компактные множества

По сути, это множество, которое является замкнутым и ограниченным.

Ограничённое множество – это множество, для которого существует конечное числоM, такое что расстояние между любой парой точек этого множества не превышаетM.

Замкнутое множество – это множество, содержащее все свои предельные точки (границы).

Например, множество (0, 1)^nограничено, но не замкнуто, так как не включает границы, а значит не компактно. А вот множество [0, 1]^nуже компактно, так как включает границы.


2. Объяснение многослойного персептрона (MLP)

Многослойный персептрон (MLP) – является разновидностью сетей прямого распространения, состоящих из полностью связанных нейронов с нелинейной функцией активации, организованных как минимум в три слоя (где первый – входной). Он примечателен своей способностью различать данные, которые не являются линейно разделимыми.

Но прежде чем перейти к объяснению на примере, желательно разобраться с некоторыми теоретическими деталями, а именно с теоремами универсальной аппроксимации. Они являются семейством теорем, описывающих различные условия и подходы, при которых нейронные сети способны аппроксимировать широкий класс функций. Часто при упоминании для удобства их сводят к одной «теореме универсальной аппроксимации», ссылаясь, например, на теорему Цыбенко. Но такое упрощение сбивает с толку, так как не учитывает все детали и различные подходы. В данной статье я хочу уделить этим теоремам больше внимания.

Если говорить о них более подробно, то теоремы универсальной аппроксимации являются по своей сути теоремами существования и предельными теоремами. Они утверждают, что существует такая последовательность преобразований\Phi_1, \Phi_2, \ \dots\ ,и что при достаточном количестве нейронов мы можем аппроксимировать любую функциюfиз определённого множества функций с заданной точностью в пределах\epsilon.

Однако эти теоремы не предоставляют способа фактически найти такую последовательность. Кроме того, они не гарантируют, что какой‑либо метод оптимизации, например, обратное распространение, сможет найти эту последовательность. Обратное распространение и другие методы могут либо найти сходящуюся последовательность, либо застрять в локальном минимуме. Также теоремы не дают гарантии, что нейронная сеть любого конечного размера, например, состоящая из 1000 нейронов, будет достаточной для аппроксимации функции с желаемой точностью.

Теперь рассмотрим некоторые из них:

Теорема Цыбенко (1989)

Цыбенко доказал, что нейронные сети с одним скрытым слоем и произвольным числом нейронов, использующие в качестве функции активации сигмоиду:

\sigma(x) = \frac{1}{1 + e^{-x}}

Могут аппроксимировать любые непрерывные функции на компактном множествеK.То есть функцииf \in C(K).

Есть также пример ограниченной ширины и глубины:

Майоров и Пинкус (1999)

Майоров и Пинкус доказали, что нейронные сети с двумя скрытыми слоями и ограниченным числом нейронов в каждом слое могут быть универсальными аппроксиматорами в пространстве непрерывных функций на компактном множестве, если используются сигмоидные функции активации.

Во многих статьях под упоминанием теоремы универсальной аппроксимации, хотя и говорится в основном о теореме Цыбенко, часто рассматривается семейство нейронных сетей, определённых теоремами Хорника и Лешно:

Теорема Хорника 1989 и Теорема Хорника 1991

Курт Хорник и его коллеги расширили результаты Цыбенко и показали, что MLP с произвольным числом скрытых слоев и произвольным числом нейронов в каждом слое могут аппроксимировать любую непрерывную функцию с любой точностью на компактном множестве, рассматривая так же расширение на пространстваL^pдля любого p \in [1, \infty).Они также доказали, что это свойство не зависит от конкретных функции активации, если она является непрерывной, ограниченной, неконстантой и неполиномиальной.

Расширение Лешно и соавторов (1992):

Лешно и соавторы расширили результаты Хорника, ослабив требования к функции активации, позволяя ей быть кусочно-непрерывной и лишь локально ограниченной, а также не является полиномом почти всюду, что позволяет включить частоиспользуемые функции активации, такие как ReLU, Mish, Swish (SiLU), GELU и другие.

2.1 Иллюстрация на примере

Перейдём теперь к более практическому объяснению. Рассмотрим популярный датасет make_circles, который представляет собой векторы в двумерном пространстве. В этом пространстве каждый вектор данных можно задать линейно, по крайней мере, с помощью двух базисных векторов.

000944bd69b83f63e838fcd30489ae78.png

Логистическая регрессия в классическом варианте, моделирующая логарифмические шансы события (отношение выполнения события к его невыполнению) как линейную комбинацию признаков:

\ln\left(\frac{p}{1 - p}\right) = \mathbf{w} \cdot \mathbf{x} + \mathbf{b}\frac{p}{1 - p} = e^{\mathbf{w} \cdot \mathbf{x} + \mathbf{b}}.p = \sigma(\mathbf{w} \cdot \mathbf{x} + \mathbf{b}) = \frac{1}{1 + e^{-(\mathbf{w} \cdot \mathbf{x} + \mathbf{b})}}.

По сути, является нейросетью с одним входным слоем, нулём скрытых слоёв и одним выходным слоем (также можно рассматривать и линейную регрессию, и прочие модели). Если для кого-то ноль скрытых слоёв кажется контринтуитивным, то это можно рассматривать как применение единичной матрицы к входному вектору, собственно, что и делает входной вектор.

\mathbf{I}\cdot \mathbf{x} = \begin{bmatrix} 1 & 0 \\ 0 & 1 \\ \end{bmatrix}  \begin{bmatrix} x_1 \\ x_2 \\ \end{bmatrix}  = \begin{bmatrix} x_1 \\ x_2 \\ \end{bmatrix}

Поскольку логистическая регрессия осуществляет линейное разделение данных в исходном пространстве, а наш набор данных make_circles является нелинейно разделимым в нем, необходимо преобразовать данные так, чтобы модель могла эффективно их разделить. Для этого добавим к нашей логистической регрессии один скрытый слой с тремя нейронами и линейной функцией активацииf_{\text{activation}}(x) = x.Посмотрим, как изменятся данные перед их подачей в логистическую регрессию:

Входные \ данные:  \\[10pt] \mathbf{x} = \begin{bmatrix} x_1\\  x_2 \end{bmatrix} \\\text{Веса скрытого слоя:}  \\[10pt] \mathbf{W} = \begin{bmatrix} w_{1,1} & w_{1,2} \\ w_{2,1} & w_{2,2} \\ w_{3,1} & w_{3,2} \end{bmatrix} \\Смещение:  \\[10pt] \mathbf{b} = \begin{bmatrix} b_1 \\ b_2 \\ b_3 \end{bmatrix} \\Тогда \ выход \ скрытого \ слоя: \\[10pt]    T(\mathbf{x}) = f_\text{activation}(\mathbf{W} \cdot \mathbf{x} + \mathbf{b})  \\[5pt]   где \  f_\text{activation}(x) = xЧто \ эквивалентно: \\[10pt] T(\mathbf{\mathbf{x}}) = x_1 \cdot \begin{bmatrix} w_{1,1} \\ w_{2,1} \\ w_{3,1} \end{bmatrix} + x_2 \cdot \begin{bmatrix} w_{1,2} \\ w_{2,2} \\ w_{3,2} \end{bmatrix} + \begin{bmatrix} b_1 \\ b_2 \\ b_3 \end{bmatrix}

И также посмотрим на график:

62efd833dde40d83ad4b122285667fea.gif

После прохождения через скрытый слой с тремя нейронами, данные сохраняют свою двумерную структуру. Хотя теперь данные выражаются в виде трех координат, их эффективное пространство по-прежнему остается двумерным. Каждый вектор можно задать линейно, как минимум, с помощью двух трехмерных базисных векторов \hat{i}и \hat{j}. Это означает, что данные находятся в двумерном аффинном подпространстве трехмерного пространства, образуя плоскость. Таким образом, мы фактически применили аффинное преобразование к исходным данным, и наш классификатор линейно разделяющий данные все еще не может их разделить.

Теперь добавим сигмоидную нелинейную функцию активации вместо линейной к результатам преобразования и посмотрим на полученный результата. То есть:

Тогда \ выход \ скрытого \ слоя: \\[5pt] T(\mathbf{x}) = \sigma(\mathbf{W} \cdot \mathbf{x} + \mathbf{b}) \\[5pt]  где \  \sigma(x) = \frac{1}{1 + e^{-x}}965d045806a15d71f3a93ad3c130b13d.gif

Бинго! Мы получили данные, которые стали нелинейными по отношению к исходному пространству признаков. Как видно из иллюстрации, они по-прежнему не являются линейно разделимыми. В данной ситуации на помощь приходит обучение нейросети, например, с использованием метода обратного распространения. Этот процесс регулирует матрицу преобразования и смещения, фактически перемещая и поворачивая базисные вектора. Таким образом, после тренировки нейросети и преобразования данных можно ожидать, что классификатор в виде логистической регрессии сможет построить разделяющую плоскость и линейно разделить данные.

1f267ddc1ad946bb4421938631b750c4.gif

Подытожим наш пример:

Изначально мы работаем с набором векторов, расположенных в двумерном векторном пространстве.
Применяя аффинное преобразование, мы переводим их в двумерное аффинное подпространство трехмерного пространства. Затем, используя нелинейную функцию активации, мы преобразуем данные нелинейно относительно входного пространства.
Далее, в процессе обучения с использованием метода обратного распространения ошибки, мы настраиваем базисные вектора двумерного подпространства таким образом, чтобы после применения функции активации данные становились линейно разделимыми на выходе скрытого слоя. Это делает их пригодными для классификации с помощью логистической регрессии на выходном слое.

Пример выше геометрически демонстрирует, почему линейные функции активации не подходят для работы с нелинейно разделимыми данными. Хотя в нашем примере мы использовали линейную функцию активации f_{\text{activation}}(x) = x.ситуация при общем случае f_{\text{activation}}(x) = w \cdot x + b останется аналогичной. Линейные функции активации не способны "изгибать" пространство входных данных при преобразовании, что необходимо для разделения нелинейных классов. Именно поэтому для работы с такими данными требуется использование нелинейных функций активации, которые позволяют моделям нейросетей эффективно преобразовывать пространство признаков, обеспечивая возможность линейного разделения в преобразованном пространстве.

Стоит отметить, что после применения нелинейной функции активации данные не всегда преобразуются в пространство, размерность которого совпадает с количеством нейронов (или размерностью каждого базисного вектора). В данном примере, после применения сигмоидной функции активации данные образуют трёхмерное подпространство в трёхмерном пространстве, то есть фактически становятся трёхмерными, но это является частным случаем.

При этом нам не обязательно увеличивать размерность базисных векторов на скрытом слое, хоть это и дает больше возможностей модели. Мы можем оставить их количество неизменным с последующим нелинейным преобразованием или даже уменьшить размерность, также используя нелинейные функции. Концепция преобразования пространства остаётся применимой и актуальной даже в случае, если нейросеть имеет несколько скрытых слоёв, то есть является глубокой, или для других архитектур нейронных сетей.

Рассмотрим подробнее выходной слой для нашего примера. Ранее я описывал его как логистическую регрессию для бинарной классификации. Но что такое логистическая регрессия, если не аффинное преобразование с последующим применением функции активации, которой, как правило, является сигмоида. Сам слой выглядит следующим образом:

\sigma\left(\mathbf{w}^\top\mathbf{x} +b\right) = \frac{1}{1 + \exp\left(-\left(\mathbf{w}^\top\mathbf{x} + {b}\right)\right)} \\[30pt]   \mathbf{w}^\top\mathbf{x} +{b}\ = \begin{bmatrix} w_{1} & w_{2} & \dots & w_{n}  \end{bmatrix} \begin{bmatrix} x_{i_1} \\ x_{i_2} \\ \vdots \\ x_{i_n} \\ \end{bmatrix} + b

Итак, сначала мы выполняем скалярное произведение двух векторов. Это операция, по сути, преобразуетN- мерный вектор в одномерное пространство. Важно отметить, что скалярное произведение – симметричная операция, то есть результат не зависит от порядка векторов: f(\mathbf{x}, \mathbf{y}) = f(\mathbf{y}, \mathbf{x}). Таким образом, не имеет значения, какой из векторов рассматривать как матрицу преобразования, а какой как преобразующий вектор. Однако в контексте нашей задачи матрицей преобразования, логичнее, если будут являться веса. После скалярного произведения мы добавляем смешение производя аффинное преобразованиеN-мерного вектора в одномерное аффинное подпространство.

После этого применяем преобразование с помощью сигмоидной функции активации, которая, по сути, изменяет это одномерное подпространство. В итоге, математически имеем тот же скрытый слой, только в контексте нашей цели, того как преобразует этот слой наши данные, а так же вместе с функцией потерь, мы его интерпритируем для удобства как выходной слой.

2.2 Аффинное преобразование и применение функции активации как функции преобразования и суперпозиции суммы функций

Суперпозиция функций, известная так же как сложная функция или «функция функции», имеет видf(g(x)),в случае суперпозиции суммы функций будет иметь вид f(g_1(x)+g_2(x)+...g_n(x)).

И в целом это довольно очевидно по идее, что аффинное преобразование и применение функции активации схожи, так как обе функции и выполняют преобразование данных с одного пространства в другое и единственная разница как. Но сейчас мы их представим в виде суперпозиции суммы функций и применения функциональных матриц к векторам, что позволит более явно увидеть сходство и пригодится как основной момент в пункте с KAN.

Рассмотрим на примере который мы выше использовали.

Аффинное преобразование:

При аффинном преобразовании элементы результатирующего вектора будут иметь следующий вид :

F_{\text{affine transform}}(\mathbf{Х}) = \begin{bmatrix} w_{1,1} x_{1} + w_{1,2} x_{2} + b_{1} \\ w_{2,1} x_{1} + w_{2,2} x_{2} + b_{2} \\ w_{3,1} x_{1} + w_{3,2} x_{2} + b_{3} \end{bmatrix}

При этом данное аффинное преобразованиеF_{\text{affine transform}}можно подать как сумму функций одной переменной, только функции будут вида \phi_{j,i}(x) = w_{j,i}x_i +b_{j,i}(смещение для одной строки можно распределить как угодно по функциям внутри неё), и преобразованный вектор будет выглядеть следующим обаразом:

F_{\text{affine transform}}(\mathbf{x}) = \begin{bmatrix}  \phi_{1,1}(x_1) + \phi_{1,2}(x_2)  \\  \phi_{2,1}(x_1) + \phi_{2,2}(x_2)  \\  \phi_{3,1}(x_1) + \phi_{3,2}(x_2)   \end{bmatrix} =  \begin{bmatrix}  X_{\text{AffineT}, 1} \\  X_{\text{AffineT}, 2} \\  X_{\text{AffineT}, 3}  \end{bmatrix}

Функция активации:

Преобразование с помощью функции активации будут иметь следующий вид:

F_{\text{activation}}(F_{\text{affine transform}}(\mathbf{x})) =  \begin{bmatrix}  \sigma(X_{\text{AffineT}, 1}) \\  \sigma(X_{\text{AffineT}, 2}) \\  \sigma(X_{\text{AffineT}, 3})  \end{bmatrix}

Но при этом это эквивалентно ситуации, где функции на главной диагонали являются функцией активации \phi_{j = i}(x) = \sigma(x),а остальные \phi_{j \neq i}(x) = 0 \cdot X_{AffineT \ i}.

F_{\text{activation}}\left(F_{\text{affine transform}}(\mathbf{x})\right) =   \begin{bmatrix}  \phi_{1,1}(X_{\text{AffineT}, 1}) + \phi_{1,2}(X_{\text{AffineT}, 2}) + \phi_{1,3}(X_{\text{AffineT}, 3}) \\  \phi_{2,1}(X_{\text{AffineT}, 1}) + \phi_{2,2}(X_{\text{AffineT}, 2}) + \phi_{2,3}(X_{\text{AffineT}, 3}) \\  \phi_{3,1}(X_{\text{AffineT}, 1}) + \phi_{3,2}(X_{\text{AffineT}, 2}) + \phi_{3,3}(X_{\text{AffineT}, 3})  \end{bmatrix}F_{\text{activation}}(F_{\text{affine transform} }(\mathbf{x})) = \begin{bmatrix}  \sigma(X_{\text{AffineT} \ 1}) + 0 \cdot X_{\text{AffineT} \ 2} + 0 \cdot X_{\text{AffineT} \ 3} \\  0 \cdot X_{\text{AffineT} \ 1} + \sigma(X_{\text{AffineT} \ 2}) + 0 \cdot X_{\text{AffineT} \ 3} \\  0 \cdot X_{\text{AffineT} \ 1}) + 0 \cdot X_{\text{AffineT} \ 2} + \sigma(X_{\text{AffineT} \ 3})  \end{bmatrix}

В общем виде каждое аффинное преобразование и применение функции активации можно рассмотреть подобным образом (если мы уже применили функциональную матрицу к вектору):

\mathbf{x}_{l+1} = \sum_{i_l=1}^{n_l}  \phi_{l,i_{l+1},i_l}(x_{i_l}) \\[20pt]   =\left[ \begin{array}{cccc}     \phi_{l,1,1}(x_{1}) & + & \phi_{l,1,2}(x_{2}) & + \cdots + & \phi_{l,1,n_l}(x_{n_l}) \\     \phi_{l,2,1}(x_{1}) & + & \phi_{l,2,2}(x_{2}) & + \cdots + & \phi_{l,2,n_l}(x_{n_l}) \\     \vdots &  & \vdots & \ddots & \vdots \\     \phi_{l,n_{l+1},1}(x_{1}) & + & \phi_{l,n_{l+1},2}(x_{2}) & + \cdots + & \phi_{l,n_{l+1},n_l}(x_{n_l}) \\     \end{array} \right], \\[10pt] \quad \\[10pt] где \\[10pt]  \phi_{l,i_{l+1},i_l}(x_{i_l}) = w_{l,i_{l+1},i_l }\cdot f_{\text{activation, }l}(x_{i_l})+ b_{l,i_{l+1}, i_l}\\[10pt] l - \text{индекс слоя}

А так как мы рассматриваем \phi_{l, l+1, i}(x_l)как функции одной переменной, то можно объединить предыдущую активацию и следующее аффинное преобразование в одно преобразование подобного вида (как в формуле выше) и интерпретировать его как слой.
Потому что, в любом случае, итоговая функция будет функцией одной переменной из-за того, что функция активации применяется только по диагонали (т. е.j = i), а значит:

\phi_{\text{linear}, j, i} (f_{\text{activation}}(x_i)) = \phi_{j, i} (x_i).

По сути, определяя каждую функцию как\phi_{j, i} (x_i) = w_{j, i} \cdot f_{\text{activation}}(x_i) + b_{j, i} .

Хотя это всё и может показаться сперва контринтуитивным, так как мы в основном воспринимаем предыдущее аффинное преобразование и последующую активацию как один из слоёв, но это просто вопрос интерпретации.


3. Объяснение RBF нейронной сети (RBFN) и SVM, связь с MLP

В этом пункте я хочу показать, в чем же причина не использовать полиномиальные функции активации, связать SVM и MLP, пройти от линейного ядра к полиномиальному и Гауссовому, а также рассмотреть RBF нейронную сеть как альтернативу MLP, что будет важно в пункте с KAN. Бонусом также мы расширим RBF нейронные сети на многослойный случай и докажем для них теорему универсальной аппроксимации.

3.1 SVM как вид нейронной сети прямого распространения

В предыдущем пункте мы рассматривали частный случай сети прямого распространения в виде MLP, а теперь рассмотрим аналоги MLP в виде некоторых вариантов SVM и RBF нейронных сетей. Их любят разделять, но почему бы не рассмотреть их в контексте сходства.

SVM, как и MLP в классическом виде, строит гиперплоскость для разделения классов в задачах классификации. Единственное отличие заключается в том, что SVM при построении гиперплоскости необходимо максимизировать расстояние между самой гиперплоскостью и границами классов. Для этого применяется процесс квадратичной оптимизации.

Теперь рассмотрим математический аспект. При предсказении классов мы имеем в SVM такую формулу:

f(\mathbf{x})_{\text{SVM}} = \sum_{i=1}^{n} \alpha_i y_i K(\mathbf{x}_i, \mathbf{x}) + b, \\где\ K - функция \ ядра,  \ \mathbf{x}_i -  \text{тренировочные вектора} , \mathbf{x} - входной\ вектор, \\[10pt]a_i - множители\ Лагранжа

При тренировке решается, как уже говорилось, задача квадратичной оптимизации, но нас интересует то, что для этого нужно вычислить матрицу Грама, используя ядро попарно между нашими тренировочными данными –K(\mathbf{x}_i, \mathbf{x}_i).

Теперь, по поводу самой функции ядра, теоретически обоснованным является использование функций, которые попадают под определение теоремы Мерсера (Mercer's theorem), то есть являются симметричнымиK(\mathbf{x}, \mathbf{x}') = K(\mathbf{x}', \mathbf{x}), положительно полуопределенными (матрица Грама имеет неотрицательные собственные значения). Это позволяет им выполнять так называемый ядерный трюк (kernel trick).

Часто используемыми подобными ядрами являются:

  • Линейное ядро:

    K_{\text{Linear}}(\mathbf{x}, \mathbf{y}) = \mathbf{x}^\top \cdot\mathbf{y}, \quad \mathbf{x}, \mathbf{y} \in \mathbb{R}^d.

  • Полиномиальное ядро:

    K_{\text{Poly }n}(\mathbf{x}, \mathbf{y}) = (\mathbf{x}^\top \cdot \mathbf{y} + r)^n, \quad \mathbf{x}, \mathbf{y} \in \mathbb{R}^d ,\quad  r \geq 0, \quad n \geq 1.

  • Гауссово (RBF) ядро:

    K_{\text{Gaussian}}(\mathbf{x}, \mathbf{y}) = \exp\left(-\frac{\|\mathbf{x} - \mathbf{y}\|^2}{\lambda}\right), \quad \mathbf{x}, \mathbf{y} \in \mathbb{R}^d, \quad \lambda > 0.

Ядерный трюк (kernel trick) — способ вычисления скалярного произведения в пространстве, сформированном функцией неявного преобразования. И выглядит это следующим образом:

K(\mathbf{x}, \mathbf{x}') = \varphi(\mathbf{x})^\top \cdot \varphi(\mathbf{x}').

Функция неявного преобразования \varphi принимает на вход наше множество данных и отображает его в новое пространство.

В данном пункте мы рассмотрим именно использование линейного ядра, где \varphi_{\text{linear}}(\mathbf{x}) = \mathbf{x}.

K_{\text{Linear}}(\mathbf{x}, \mathbf{x}') = \varphi_{\text{linear}}(\mathbf{x})^\top \cdot \varphi_{\text{linear}}(\mathbf{x}') = \mathbf{x}^\top \cdot \mathbf{x'}

Линейное ядро также попадает под определение теоремы Мерсера и способно выполнять ядерный трюк. Оно просто преобразует исходное пространство в себя и производит скалярное произведение.

Предлагаю рассмотреть SVM как нейросеть с тремя слоями, где входным слоем будет наша функция \varphi_{\text{linear}}(\mathbf{x}).Скрытым слоем будет просто линейное преобразование. В этом слое матрица весов будет построена с использованием предварительно преобразованных тренировочных векторов, используя функцию \varphi_{\text{linear}}(\mathbf{x}).Выходным слоем будет аффинное преобразование, где веса состоят из множителей Лагранжа и значений целевой функции для каждого тренировочного вектора.

При этом данный вариант мы не можем рассматривать как вариант MLP из-за того, что функция активации, то есть ядро Kявляется линейным. По сути, данная модель производит линейное и последующее аффинное преобразование и является полностью линейной.

Рассмотрим набор из n тренировочных векторов:

\mathbf{x}_{\text{train}, 1},\, \mathbf{x}_{\text{train}, 2},\, \dots,\, \mathbf{x}_{\text{train}, n}где каждый вектор \mathbf{x}_{\text{train}, j} \in \mathbb{R}^d, \quad j = 1,,2,,\dots,,n.

Также рассмотрим набор из тестовых векторов:

\mathbf{x}_{\text{test}, 1},\, \mathbf{x}_{\text{test}, 2},\, \dots,\, \mathbf{x}_{\text{test}, m}где каждый вектор \mathbf{x}_{\text{test}, q} \in \mathbb{R}^d, \quad q= 1,\,2,\,\dots,\,m.

Формулу нашей модели можно тогда подать как:

f(\mathbf{x})_\text{Linear SVM} = \mathbf{W}_2(\mathbf{W}_1 \cdot \varphi_\text{linear}(\mathbf{x}))+b_\text{out}

Для наглядности можно записать матрицы в развернутом виде:

\mathbf{W}_1 = \begin{bmatrix} \varphi(x_{\text{train},1}) \\ \varphi(x_{\text{train},2}) \\ \vdots \\ \varphi(x_{\text{train},n}) \end{bmatrix} \\[50pt]  = \begin{bmatrix}   \varphi(x_{\text{train},1,1}) & \varphi(x_{\text{train},1,2}) & \dots & \varphi(x_{\text{train},1,d}) \\   \varphi(x_{\text{train},2,1}) & \varphi(x_{\text{train},2,2}) & \dots & \varphi(x_{\text{train},2,d}) \\   \vdots & \vdots & \ddots & \vdots \\   \varphi(x_{\text{train},n,1}) & \varphi(x_{\text{train},n,2}) & \dots & \varphi(x_{\text{train},n,d})   \end{bmatrix} \\[50pt]  = \begin{bmatrix}   x_{\text{train},1,1} & x_{\text{train},1,2} & \dots & x_{\text{train},1,d} \\   x_{\text{train},2,1} & x_{\text{train},2,2} & \dots & x_{\text{train},2,d} \\   \vdots & \vdots & \ddots & \vdots \\   x_{\text{train},n,1} & x_{\text{train},n,2} & \dots & x_{\text{train},n,d}   \end{bmatrix}\mathbf{W}_2 = \begin{bmatrix} a_1 y_1 \\ a_2 y_2 \\ \vdots \\ a_n y_n \end{bmatrix}\\[15pt]

Можно также переписать и саму формулу модели:

f_\text{Linear SVM}(\mathbf{x}) = \mathbf{W}_2 \left( \begin{bmatrix}  x_{\text{train}, 1, 1} & x_{\text{train}, 1, 2} & \dots & x_{\text{train}, 1, d} \\  x_{\text{train}, 2, 1} & x_{\text{train}, 2, 2} & \dots & x_{\text{train}, 2, d} \\  \vdots & \vdots & \ddots & \vdots \\  x_{\text{train}, n, 1} & x_{\text{train}, n, 2} & \dots & x_{\text{train}, n, d}  \end{bmatrix}  \begin{bmatrix}  x_{1} \\  x_{2} \\  \vdots \\  x_{d}  \end{bmatrix}  \right) + b_\text{out}\\[15pt]

В обучении модели, конечно же, из-за использования квадратичной оптимизации, как было обсуждено в начале этого пункта, мы сначала строим матрицу Грама из тренировочных векторов.

Матрица \ Грама \\[10pt] \mathbf{G} = \mathbf{W}_1 \cdot \varphi(\mathbf{x})\\[20pt] \mathbf{x}_{\text{input}} = \begin{bmatrix}  x_{\text{train},1} \\  x_{\text{train},2} \\  \vdots \\  x_{\text{train},n}  \end{bmatrix}\\[45pt]\mathbf{G} = \begin{bmatrix} x_{\text{train},1}^\top x_{\text{train},1} & x_{\text{train},1}^\top x_{\text{train},2} & \dots & x_{\text{train},1}^\top x_{\text{train},n} \\ x_{\text{train},2}^\top x_{\text{train},1} & x_{\text{train},2}^\top x_{\text{train},2} & \dots & x_{\text{train},2}^\top x_{\text{train},n} \\ \vdots & \vdots & \ddots & \vdots \\ x_{\text{train},n}^\top x_{\text{train},1} & x_{\text{train},n}^\top x_{\text{train},2} & \dots & x_{\text{train},n}^\top x_{\text{train},n} \end{bmatrix}\\[15pt]

После этого обучаем множители Лагранжа в матрице \mathbf{W}_2, и можем тестировать модель.

f_{\text{Linear SVM}}(x_{\text{test}, j}) = \\[10pt]= \mathbf{W}_2 \left( \begin{bmatrix}   x_{\text{train}, 1, 1} & x_{\text{train}, 1, 2} & \dots & x_{\text{train}, 1, d} \\   x_{\text{train}, 2, 1} & x_{\text{train}, 2, 2} & \dots & x_{\text{train}, 2, d} \\   \vdots & \vdots & \ddots & \vdots \\   x_{\text{train}, n, 1} & x_{\text{train}, n, 2} & \dots & x_{\text{train}, n, d}   \end{bmatrix}   \begin{bmatrix}   x_{\text{test}, j, 1} \\   x_{\text{test}, j, 2} \\   \vdots \\   x_{\text{test}, j, d}   \end{bmatrix}  \right) + b_\text{out}\\[15pt]

Все то, что мы рассмотрели выше, можно подать в виде схемы:

\text{Входные данные} \quad \mathbf{x} \quad \xrightarrow{\varphi} \quad \varphi(\mathbf{x}) \quad \xrightarrow{\cdot \mathbf{w}} \quad \varphi(\mathbf{x}) \cdot \mathbf{w} \quad \xrightarrow{\text{выход модели}} \quad \hat{y} \quad (1) \\[10pt] где \ \mathbf{w} = \varphi(\mathbf{x}_i), \  \mathbf{x}_i -  \text{тренировочные вектора}\\[15pt]

В реальности, конечно, будет использоваться ядро для уменьшения вычислительных затрат, и все будет выглядеть следующим образом:

\text{Входные данные} \quad \mathbf{x} \quad \xrightarrow{K(\mathbf{x}, \mathbf{x}_i)} \quad K(\mathbf{x}, \mathbf{x}_i) \quad \xrightarrow{\text{выход модели}} \quad \hat{y} \quad (2) \\[10pt]  где \ \mathbf{x}_i -  \text{тренировочные вектора}\\[15pt]

Что соответствует формуле, которую мы рассматривали в самом начале этого пункта:

f(\mathbf{x})_{\text{SVM}} = \sum_{i=1}^{n} \alpha_i y_i K(\mathbf{x}_i, \mathbf{x}) + b, \\где\ K - функция \ ядра,  \ \mathbf{x}_i -  \text{тренировочные вектора} , \mathbf{x} - входной\ вектор, \\[10pt]a_i - множители\ Лагранжа

Ну, или в случае с линейным ядром, мы имеем формулу:

f(\mathbf{x})_{\text{Linear SVM}} = \sum_{i=1}^{n} \alpha_i y_i (\mathbf{x}_i\cdot \mathbf{x}) + b

Несмотря на то, что структура модели для первой схемы и для второй одинакова, это является лишь частным случаем при линейном ядре, что будет видно в следующих примерах с другими ядрами.

3.1.1 Полиномиальное ядро

Возьмем вторую схему:

\text{Входные данные} \quad \mathbf{x} \quad \xrightarrow{K(\mathbf{x}, \mathbf{x}_i)} \quad K(\mathbf{x}, \mathbf{x}_i) \quad \xrightarrow{\text{выход модели}} \quad \hat{y} \quad (2) \\[10pt]  где \\\mathbf{x}_i -  \text{тренировочные вектора}

Теперь рассмотрим использование полиномиального ядра, в общем виде оно задано как:

K_{\text{Poly }n}(\mathbf{x},\mathbf{y}) = (\mathbf{x}^\top \mathbf{y} + r)^n,   \ \ \mathbf{x}, \mathbf{y} \in \mathbb{R}^d, \quad r \geq 0, \quad n \geq 1

Гдеn– показатель степени полиномиального ядра.

Упростим для примера сделав n = 2 и r = 0:

K_{\text{Poly }2}(\mathbf{x},\mathbf{y})=(\mathbf{x}^\top \cdot \mathbf{y})^2

Представим теперь, как трехслойный MLP, используя вторую схему, тогда формула будет выглядеть так:

f(\mathbf{x})_{\text{Poly SVM}} = \sum_{i=1}^{n} \alpha_i y_i K_{\text{poly }2}(\mathbf{x}_i, \mathbf{x}) + b = \sum_{i=1}^{n} \alpha_i y_i (\mathbf{x}_i\cdot \mathbf{x})^2 + b

Фактически, мы просто заменяем функцию активации в предыдущем примере с линейным ядромf_{\text{activation}}(x) = xна квадратичнуюf_{\text{activation}}(x) = x ^2на скрытом слое. Таким образом, в скрытом слое будет выполняться аффинное преобразование с последующей квадратичной функцией активации.

Однако, как я упоминал в предыдущем пункте про MLP, не все нелинейные функции активации изменяют размерность преобразованных данных, равную размерности базисных векторов. В общем случае для двумерных векторов при использовании квадратичной функции активации они будут образовывать максимум трёхмерное подпространство в произвольномN- мерном пространстве.

И вот тут первая схема нам и пригодится:

\text{Входные данные} \quad \mathbf{x} \quad \xrightarrow{\varphi} \quad \varphi(\mathbf{x}) \quad \xrightarrow{\cdot \mathbf{w}} \quad \varphi(\mathbf{x}) \cdot \mathbf{w} \quad \xrightarrow{\text{выход модели}} \quad \hat{y} \quad (1) \\[10pt] где \ \mathbf{w} = \varphi(\mathbf{x}_i), \  \mathbf{x}_i -  \text{тренировочные вектора}

Поэтому сейчас мы разберёмся с функцией \varphi_{\text{poly }n},чтобы понять, почему Хорник и Лешно утверждали, что нейронные сети с именно неполиномиальными функциями активации обладают свойством универсальной аппроксимации, а также почему использование полиномиальных функций активации в нейронных сетях не является популярным решением.

Для двумерных данных с полиномиальным ядром второй степени по определению функция \varphi_{\text{poly }2}выглядит подобным образом:

\varphi_{\text{poly }2}(\mathbf{x} )  = \begin{bmatrix}x_1^2 \\x_2^2\\  \sqrt{2}x_1x_2\end{bmatrix}

Вот доказательство:

\varphi_{\text{poly }2}(\mathbf{x}_n)^{\top} \varphi_{\text{poly }2}(\mathbf{x}_m) = \begin{bmatrix} x_{n,1}^2 & x_{n,2}^2 & \sqrt{2} x_{n,1} x_{n,2} \end{bmatrix} \cdot \begin{bmatrix} x_{m,1}^2 \\ x_{m,2}^2 \\ \sqrt{2} x_{m,1} x_{m,2} \end{bmatrix}\\ = x_{n,1}^2 x_{m,1}^2 + x_{n,2}^2 x_{m,2}^2 + 2 x_{n,1} x_{n,2} x_{m,1} x_{m,2} = (x_n \cdot x_m)^2

И иллюстрация этого преобразования:

То есть, как мы можем увидеть, применение полиномиального ядра второй степени к двумерным данным всегда отображает их нелинейно в трёхмерное пространство и после этого производит скалярное произведение.

Для трёхмерных векторов с полиномиальным ядром второй степени:

\varphi_{\text{poly }2}(\mathbf{x}) = \begin{bmatrix} x_{1}^2 \\ x_{2}^2 \\ x_{3}^2 \\ \sqrt{2} x_{1} x_{2} \\ \sqrt{2} x_{1} x_{3} \\ \sqrt{2} x_{2} x_{3} \end{bmatrix}

Для двумерных векторов с полиномиальным ядром третьей степени:

\varphi_{\text{poly }3}(\mathbf{x}) = \begin{bmatrix} x_{1}^3 \\ x_{2}^3 \\ \sqrt{3} x_{1}^2 x_{2} \\ \sqrt{3} x_{1} x_{2}^2 \\ \sqrt{3} x_{1}^2 \\ \sqrt{3} x_{2}^2 \\ \sqrt{6} x_{1} x_{2} \end{bmatrix}Доказательство и анализ для общего случая.

Полиномиальное ядро степениn \in \mathbb{N}_0(неотрицательные целые числа) с параметром сдвигаr = 0определяется как:

K_{\text{Poly }n}(\mathbf{x}, \mathbf{y}) = (\mathbf{x}^\top \mathbf{y})^n, \quad\mathbf{x}, \mathbf{y} \in \mathbb{R}^d, \quad n \in \mathbb{N}_0,  \quad n \geq 1

Необходимо доказать, что существует такая функция\varphi_{\text{poly }n}: \mathbb{R}^d \rightarrow \mathbb{R}^M ,что:

K_{\text{Poly }n}(\mathbf{x}, \mathbf{y}) = \varphi_{\text{poly }n}(\mathbf{x})^\top \varphi_{\text{poly }n}(\mathbf{y})

и при этом размерностьMпревышает размерностьdдляd \geq 2иn \geq 2.

Для этого мы воспозуемся мультиномиальной теоремой, которая обобщает биномиальную и триномиальную теоремы на случай произвольного количества слагаемых. Она гласит, что для любых вещественных чиселx_1, x_2, \dots, x_dи натурального числаn:

(x_1 + x_2 + \dots + x_d)^n = \sum_{k_1 + k_2 + \dots + k_d = n} \frac{n!}{k_1! k_2! \dots k_d!} x_1^{k_1} x_2^{k_2} \dots x_d^{k_d}

гдеk_1, k_2, \dots, k_d \in \mathbb{N}_0,и суммаk_1 + k_2 + \dots + k_d = n.

Подставляя это разложение обратно в выражение для ядра, получаем:

K_{\text{Poly }n}(\mathbf{x}, \mathbf{y}) = \sum_{k_1 + k_2 + \dots + k_d = n} \frac{n!}{k_1! \, k_2! \, \dots \, k_d!} \prod_{i=1}^d (x_i y_i)^{k_i}

Исходя из данного преобразования мы можем выразить\varphi_{\text{poly }n}(\mathbf{x})как:

\varphi_{\text{poly }n}(\mathbf{x}) = \left[ \varphi_{\text{poly }j}(\mathbf{x}) \right]_{j=1}^M, \quad M \to \infty

Где каждая компонента\varphi_{\text{poly }j}(\mathbf{x})соответствует уникальному набору мультииндексов\mathbf{k}^{(j)} \in \mathbb{N}_0^Mи определяется как:

\varphi_{\text{poly } j}(\mathbf{x}) = \frac{x_1^{k_1^{(j)}} x_2^{k_2^{(j)}} \dots x_d^{k_d^{(j)}}}{\sqrt{k_1^{(j)}! \, k_2^{(j)}! \, \dots \, k_d^{(j)}!}}

Теперь проанализируем что происходит сMпри различныхdиn.

  • Еслиd \geq 2иn \geq 2:

    M = \binom{n + d - 1}{d - 1} = \frac{(n + d - 1)!}{n! \, (d - 1)!} >d

    При фиксированной размерностиdи увеличении степениn, Mрастёт полиномиально относительноn.

    При фиксированной степениnи увеличении размерностиd, Mрастёт экспоненциально относительноd.

  • Дляn = 1:

    M = d

    Полиномиальное ядро первой степени эквивалентно линейному ядру K_{\text{Linear}}и функция\varphi_{\text{poly }n}преобразует данные в исходное пространство признаков.

  • Дляd = 1:

    M=1

    Функция\varphi_{\text{poly }n}отображает входные данные в одномерное пространство признаков. Приn = 1эквивалент\varphi_{\text{linear }}.Приn\geq2производит нелинейное преобразование в другое одномерное пространство.

То есть, если мы возьмём формулу SVM для первой схемы:

f(\mathbf{x})_\text{Poly SVM} = \mathbf{W}_2(\mathbf{W}_1 \cdot \varphi_{\text{poly }n}(\mathbf{x}) + \mathbf{b}_\text{in})+b_\text{out}

Матрица\mathbf{W}_1, которая состоит из набора тренировочных векторов, предварительно преобразованных с помощью функции\varphi_{\text{poly }n}(x),будет иметь размерN \times M,гдеN– количество тренировочных векторов, аM– количество элементов преобразованного тренировочного вектора с помощью функции\varphi_{\text{poly }n}(x),

Если взять с\varphi_{\text{poly }2}(x),ядром для двумерных входных векторов, матрица будетN \times 3,для \varphi_{\text{poly }3}(x)N \times 7для\varphi_{\text{poly }2}(x)но для трёхмерных входных – N \times 6.

Ситуация с MLP и полиномиальной функцией активации аналогична, просто вместо тренировочных векторов мы используем заранее определённые веса.

Это и есть причина, почему Хорник и Лешно в своих работах указывали, что для универсальной аппроксимации функция активации нейронной сети не должна быть полиномиальной, так как это ограничивает возможности модели в увеличении размерности признаков после линейного или аффинного преобразования.

Непопулярность полиномиальных функций активации на практике объясняется двумя взаимосвязанными причинами. Во-первых, такие функции ограничивают размерность преобразованного пространства как мы уже обсудили. Во-вторых, при использовании метода обратного распространения ошибки для оптимизации возникает численная нестабильность при расчете градиентов по параметрам. С увеличением степени полинома, хотя размерность пространства растет и предоставляет модели больше возможностей, высокие степени могут вызывать нестабильность в вычислении градиентов. Таким образом, решая любую одну из проблем, мы всегда сталкиваемся с другой.

3.1.2 Гауссово ядро

Но перед тем как начать обсуждение этого пункта, необходимо ввести определение радиальной базисной функции в контексте данной статьи.

Радиальная базисная функция (RBF) будет являться вещественнозначной функцией, которая принимает вектор и вычисляет эвклидово расстояние до другого фиксированного вектора, который часто называют центром. То естьf(\mathbf{x}) = \|\mathbf{x} - \mathbf{c}\|.

В общем виде ее, конечно, можно расширить на различные виды норм для векторных пространств, а также на функциональные и другие виды.

Теперь перейдём к рассмотрению RBF (в данном случае гауссового) ядра и его вычислению скалярного произведения в бесконечномерном пространстве.

Доказательство того, что Гауссово ядро вычисляет скалярное произведение в бесконечномерном пространстве, и нахождение функции неявного преобразования.

Исходное выражение Гауссового ядра при\lambda = 2:

K_{\text{Gaussian}}(\mathbf{x}, \mathbf{y}) = \exp\left( -\frac{1}{2}||\mathbf{x} - \mathbf{y}||^2 \right)

При этом эвклидово расстояние между\mathbf{x}и\mathbf{y}можно разложить как:

||\mathbf{x} - \mathbf{y}||^2 = ||\mathbf{x}||^2 + ||\mathbf{y}||^2 - 2 \mathbf{x}^\top \cdot \mathbf{y}K_{\text{Gaussian}}(\mathbf{x}, \mathbf{y}) = \exp\left( -\frac{||\mathbf{x}||^2 + ||\mathbf{y}||^2 - 2 \mathbf{x}^\top \cdot \mathbf{y}}{2} \right)K_{\text{Gaussian}}(\mathbf{x}, \mathbf{y}) = \exp\left( -\frac{||\mathbf{x}||^2}{2} \right) \cdot \exp\left( -\frac{||\mathbf{y}||^2}{2} \right) \cdot \exp\left( \mathbf{x}^\top \cdot \mathbf{y} \right)

Ряд Тейлора для экспоненты выглядит следующим образом:

\exp(\mathbf{x}) = \sum_{n=0}^\infty \frac{\mathbf{x}^n}{n!}

Подставляяz = \mathbf{x} \cdot \mathbf{y},получаем:

\exp(\mathbf{x}^\top \cdot \mathbf{y}) = \sum_{n=0}^\infty \frac{(\mathbf{x}^\top \cdot \mathbf{y})^n}{n!}

Вспомним определение мултиномиальной теоремы для любых вещественных чиселx_1, x_2, \dots, x_dи натурального числаn:

(x_1 + x_2 + \dots + x_d)^n = \sum_{k_1 + k_2 + \dots + k_d = n} \frac{n!}{k_1! k_2! \dots k_d!} x_1^{k_1} x_2^{k_2} \dots x_d^{k_d}

гдеk_1, k_2, \dots, k_d \in \mathbb{N}_0, и сумма k_1 + k_2 + \dots + k_d = n.

В нашем случае:

(\mathbf{x} \cdot \mathbf{y})^n = \left( \sum_{i=1}^d x_i y_i \right)^n

Применяя мультиномиальную теорему, получаем:

(\mathbf{x} \cdot \mathbf{y})^n = \sum_{k_1 + k_2 + \dots + k_d = n} \frac{n!}{k_1! k_2! \dots k_d!} \prod_{i=1}^d (x_i y_i)^{k_i}

Подставляя разложение экспоненты и результат применения мультиномиальной теоремы в выражение дляK_{\text{Gaussian}}(\mathbf{x}, \mathbf{y}),получаем:

K_{\text{Gaussian}}(\mathbf{x}, \mathbf{y}) = C\cdot \sum_{n=0}^{\infty} \frac{1}{n!} \left( \sum_{k_1 + k_2 + \dots + k_d = n} \frac{n!}{k_1! k_2! \dots k_d!} \prod_{i=1}^d (x_i y_i)^{k_i} \right)\\[20pt]где \\[10pt]C =  \exp\left( -\frac{||\mathbf{x}||^2}{2} \right) \cdot \exp\left( -\frac{||\mathbf{y}||^2}{2} \right)

Упрощая, получаем:

K_{\text{Gaussian}}(\mathbf{x}, \mathbf{y}) = C \cdot\sum_{k_1, k_2, \dots, k_d = 0}^{\infty} \frac{(x_1 y_1)^{k_1} (x_2 y_2)^{k_2} \dots (x_d y_d)^{k_d}}{k_1! k_2! \dots k_d!}

Мы знаем, что:

K_{\text{Gaussian}}(\mathbf{x}, \mathbf{y}) = \varphi_{\text{gaussian}}(\mathbf{x})^\top \varphi_{\text{gaussian}}(\mathbf{y})

Исходя из преобразований выше мы можем определить\varphi_{\text{Gaussian}}(\mathbf{x})как:

\varphi_{\text{Gaussian}}(\mathbf{x}) = \exp\left( -\frac{1}{2} ||\mathbf{x}||^2 \right) \cdot \left[ \varphi_{\text{gaussian }j}(\mathbf{x}) \right]_{j=1}^M,  \quad M \to \infty

Где каждая компонента\varphi_{\text{Gaussian }j}(\mathbf{x})соответствует уникальному набору мультииндексов\mathbf{k}^{(j)} \in \mathbb{N}_0^Mи определяется как:

\varphi_{\text{gaussian }j}(\mathbf{x}) = \frac{x_1^{k_1^{(j)}} x_2^{k_2^{(j)}} \dots x_d^{k_d^{(j)}}}{\sqrt{k_1^{(j)}! \, k_2^{(j)}! \, \dots \, k_d^{(j)}!}}

Таким образом, исходя из того, что функция\varphi_{\text{gaussian}}(\mathbf{x})возвращает вектор с бесконечным количество компонент, а значит что любой входной вектор фиксированной размерности будет отображаться в бесконечномерное пространство признаков. Из этого следует, что используя гауссово ядро K_{\text{Gaussian}}(\mathbf{x}, \mathbf{y}) ,и выполняя ядерный трюк, мы фактически вычисляем скалярное произведение нелинейно преобразованных входных векторов в это бесконечномерное пространство.

Возьмем Гауссово ядро:

K_{\text{Gaussian}}(\mathbf{x}, \mathbf{y}) = \exp\left( -\frac{||\mathbf{x} - \mathbf{y}||^2}{\lambda} \right)

Возьмем также знакомую нам первую схему и рассмотрим её для Гауссового ядра:

\text{Входные данные} \quad \mathbf{x} \quad \xrightarrow{\varphi} \quad \varphi(\mathbf{x}) \quad \xrightarrow{\cdot \mathbf{w}} \quad \varphi(\mathbf{x}) \cdot \mathbf{w} \quad \xrightarrow{\text{выход модели}} \quad \hat{y} \quad (1) \\[10pt] где \ \mathbf{w} = \varphi(\mathbf{x}_i), \  \mathbf{x}_i -  \text{тренировочные вектора}

Функция \varphi_\text{gaussian}(x) при\lambda = 2определяется как:

\varphi_{\text{gaussian}}(\mathbf{x}) = \exp\left( -\frac{1}{2} ||\mathbf{x}||^2 \right) \cdot \left[ \varphi_{\text{gaussian }j}(\mathbf{x}) \right]_{j=1}^\infty

Где каждая компонента\varphi_{\text{gaussian }j}(\mathbf{x})соответствует уникальному мультииндексу\mathbf{k}^{(j)} \in \mathbb{N}^\text{M}_0и определяется как:

\varphi_{\text{gaussian }j}(\mathbf{x}) = \frac{x_1^{k_1^{(j)}} x_2^{k_2^{(j)}} \dots x_d^{k_d^{(j)}}}{\sqrt{k_1^{(j)}! \, k_2^{(j)}! \, \dots \, k_d^{(j)}!}}

Пример для двух двумерных векторов \mathbf{x}^\top= \begin{bmatrix}x_1, x_2\end{bmatrix}, \ \mathbf{y}^\top = \begin{bmatrix}y_1, y_2\end{bmatrix}иM = 2.

j

\mathbf{k}^{(j)} = [k_1^{(j)}, k_2^{(j)}]

\varphi_{\text{Gaussian }j}(\mathbf{x})

1

(0, 0)

\frac{x_1^0 x_2^0}{\sqrt{0! , 0!}} = 1

2

(1, 0)

\frac{x_1^1 x_2^0}{\sqrt{1! \, 0!}} = x_1

3

(0, 1)

\frac{x_1^0 x_2^1}{\sqrt{0! \, 1!}} = x_2

4

(2, 0)

\frac{x_1^2 x_2^0}{\sqrt{2! \, 0!}} = \frac{x_1^2}{\sqrt{2}}

5

(1, 1)

\frac{x_1^1 x_2^1}{\sqrt{1! \, 1!}} = x_1 x_2

6

(0, 2)

\frac{x_1^0 x_2^2}{\sqrt{0! \, 2!}} = \frac{x_2^2}{\sqrt{2}}

Собирая всё вместе,\varphi_\text{gaussian}(\mathbf{x})можно записать как:

\varphi_\text{gaussian}(\mathbf{x}) = \exp\left( -\frac{1}{2} (x_1^2 + x_2^2) \right ) \left[ 1, x_1, x_2, \frac{x_1^2}{\sqrt{2}}, x_1 x_2, \frac{x_2^2}{\sqrt{2}} \right]

Аналогично для \varphi_\text{gaussian}(\mathbf{y}):

\varphi_\text{gaussian}(\mathbf{y}) = \exp\left( -\frac{1}{2} (y_1^2 + y_2^2) \right ) \left[ 1, y_1, y_2, \frac{y_1^2}{\sqrt{2}}, y_1 y_2, \frac{y_2^2}{\sqrt{2}} \right]

Теперь вычислим скалярное произведение между \varphi_\text{gaussian}(\mathbf{x}) и \varphi_\text{gaussian}(\mathbf{y}):

K_\text{Gaussian}(\mathbf{x}, \mathbf{y}) = \varphi_\text{gaussian}(\mathbf{x})^\top \cdot \varphi_\text{gaussian}(\mathbf{y}) \\ = \exp\left(-\frac{1}{2} (\|\mathbf{x}\|^2 + \|\mathbf{y}\|^2)\right) \cdot \left(1 + x_1 y_1 + x_2 y_2 + \frac{x_1^2 y_1^2}{2} + x_1 x_2 y_1 y_2 + \frac{x_2^2 y_2^2}{2} \right) \\ = \exp\left(-\frac{1}{2} (\|\mathbf{x}\|^2 + \|\mathbf{y}\|^2)\right) \cdot \left(1 + \mathbf{x}^\top \mathbf{y} + \frac{(\mathbf{x}^\top \mathbf{y})^2}{2!}\right) \\ = \exp\left(-\frac{1}{2} (\|\mathbf{x}\|^2 + \|\mathbf{y}\|^2)\right) \cdot \sum_{r=0}^{2} \frac{ (\mathbf{x}^\top \mathbf{y})^r }{r!} \\ \approx \exp\left(-\frac{1}{2} (\|\mathbf{x}\|^2 + \|\mathbf{y}\|^2)\right) \cdot \exp(\mathbf{x}^\top \mathbf{y})

Теперь рассмотрим на примере SVM, что происходит с тренировочными и входными векторами, и что мы получим на выходе перед подачей в линейный классификатор. Для большей наглядности и уменьшения количества индексов я буду использовать в качестве тренировочных векторов двумерные векторы:\mathbf{a}, \mathbf{b}, \mathbf{c}, \mathbf{d} в качестве тестового вектора –\mathbf{x}_\text{test}.

Вектор\mathbf{a}задан подобным образом:

\mathbf{a} = \begin{bmatrix} a_{1} \\ a_{2} \end{bmatrix}\varphi_\text{Gaussian}(\mathbf{a}) = \exp\left(-\frac{1}{2}(a_1^2 + a_2^2)\right) \cdot \left[1, \, a_1, \, a_2, \, \frac{a_1^2}{\sqrt{2}}, \, a_1 a_2, \, \frac{a_2^2}{\sqrt{2}}, \, \dots \right]  \\=C_\text{a} \cdot \left[1, \, a_1, \, a_2, \, \frac{a_1^2}{\sqrt{2}}, \, a_1 a_2, \, \frac{a_2^2}{\sqrt{2}}, \, \dots \right]

для \mathbf{b}, \mathbf{c}, \mathbf{d} и \mathbf{x}_\text{test}все аналогично.

Теперь построим матрицу преобразования, используя тренировочные векторы:

\mathbf{W}_1 = \begin{bmatrix}  C_{\text{a}} & C_{\text{a}} a_{\text{1}} & C_{\text{a}} a_{\text{2}} & C_{\text{a}} \frac{a_{\text{1}} a_{\text{2}}}{\sqrt{1}} & C_{\text{a}} \frac{a_{\text{1}}^2}{\sqrt{2}} & C_{\text{a}} \frac{a_{\text{2}}^2}{\sqrt{2}} & \cdots \\  C_{\text{b}} & C_{\text{b}} b_{\text{1}} & C_{\text{b}} b_{\text{2}} & C_{\text{b}} \frac{b_{\text{1}} b_{\text{2}}}{\sqrt{1}} & C_{\text{b}} \frac{b_{\text{1}}^2}{\sqrt{2}} & C_{\text{b}} \frac{b_{\text{2}}^2}{\sqrt{2}} & \cdots \\  C_{\text{c}} & C_{\text{c}} c_{\text{1}} & C_{\text{c}} c_{\text{2}} & C_{\text{c}} \frac{c_{\text{1}} c_{\text{2}}}{\sqrt{1}} & C_{\text{c}} \frac{c_{\text{1}}^2}{\sqrt{2}} & C_{\text{c}} \frac{c_{\text{2}}^2}{\sqrt{2}} & \cdots \\  C_{\text{d}} & C_{\text{d}} d_{\text{1}} & C_{\text{d}} d_{\text{2}} & C_{\text{d}} \frac{d_{\text{1}} d_{\text{2}}}{\sqrt{1}} & C_{\text{d}} \frac{d_{\text{1}}^2}{\sqrt{2}} & C_{\text{d}} \frac{d_{\text{2}}^2}{\sqrt{2}} & \cdots \\  \end{bmatrix}\mathbf{W}_1 \times \varphi_\text{gaussian}(\mathbf{x}_\text{test}) = \begin{bmatrix} C_x C_a \left( 1 + a_1 x_1 + a_2 x_2 + \frac{a_1^2 x_1^2}{2} + a_1 a_2 x_1 x_2 + \frac{a_2^2 x_2^2}{2} + \cdots \right) \\ C_x C_b \left( 1 + b_1 x_1 + b_2 x_2 + \frac{b_1^2 x_1^2}{2} + b_1 b_2 x_1 x_2 + \frac{b_2^2 x_2^2}{2} + \cdots \right) \\ C_x C_c \left( 1 + c_1 x_1 + c_2 x_2 + \frac{c_1^2 x_1^2}{2} + c_1 c_2 x_1 x_2 + \frac{c_2^2 x_2^2}{2} + \cdots \right) \\ C_x C_d \left( 1 + d_1 x_1 + d_2 x_2 + \frac{d_1^2 x_1^2}{2} + d_1 d_2 x_1 x_2 + \frac{d_2^2 x_2^2}{2} + \cdots \right) \end{bmatrix}

Преобразование с помощью функции \varphi_\text{gaussian} Гауссового ядра даёт нам нелинейное отображение вектора в бесконечномерное пространство. Это позволяет нам построить матрицу преобразования размеромN \times M, где N – количество векторов для обучения в случае SVM, либо количество нейронов в более общем случае, а так же M \to \infty.Кроме того, итоговый ранг матрицы, как и размерность результатирующего вектора, будут зависеть именно от значения N.Именно в этом заключается главная особенность использования Гауссового ядра в SVM. К примеру, выше мы преобразовали вектор \mathbf{x}из двумерного исходного пространства нелинейно в четырёхмерное пространство.

В случае с SVM в примере выше, мы преобразуем тренировочные вектора \mathbf{a},\mathbf{b}, \mathbf{c}, \mathbf{d} при помощи \varphi_\text{gaussian}, затем через матрицу преобразования создаём элементы, которые были созданы с помощью тех же тренировочных векторов и функции \varphi_\text{gaussian},по сути создавая матрицу Грама. Затем эта матрица будет использоваться в процессе квадратичной оптимизации для обучения множителей Лагранжа в выходном слое. После обучения мы можем тестировать модель на новых векторах, таких как \mathbf{x},как мы и сделали выше.

Если мы возьмем вторую схему, где мы рассматриваем напрямую применение ядра:

\text{Входные данные} \quad \mathbf{x} \quad \xrightarrow{K(\mathbf{x}, \mathbf{x}_i)} \quad K(\mathbf{x}, \mathbf{x}_i) \quad \xrightarrow{\text{выход модели}} \quad \hat{y} \quad (2) \\[10pt]  где \ \mathbf{x}_i -  \text{тренировочные вектора}

Тогда формула SVM будет выглядеть следующим образом:

f(\mathbf{x})_{\text{SVM RBF}} = \sum_{i=1}^{n} \alpha_i y_i K_{\text{Gaussian}}(\mathbf{x}_i, \mathbf{x}) + b = \sum_{i=1}^{n} \alpha_i y_i  \exp\left( -\frac{||\mathbf{x} - \mathbf{x}_i||^2}{\lambda} \right) + b

Но в отличие от линейного или полиномиального ядра, мы не можем представить данную нейронную сеть как MLP, поскольку вычисляем квадрат евклидова расстояния, а не скалярное произведение. Мы вернёмся к этому и рассмотрим более подробно в пункте про KAN. При этом SVM с RBF ядром является подмножеством RBF нейронной сети с определённым подходом к её построению и обучению. Поэтому предлагаю перейти к рассмотрению самой RBF нейронной сети.

3.2 RBF нейронная сеть

В предыдущем абзаце я уже говорил, что RBF-нейронная сеть применяет аналогичный подход как f(\mathbf{x})_{\text{SVM RBF}},но более обобщённо: вместо тренировочных данных мы можем использовать любые случайные веса, поскольку они будут оптимизироваться в процессе обучения. Также нет необходимости фокусироваться на задаче максимизации расстояния между классами, использовании множителей Лагранжа или квадратичной оптимизации.

Таким образом, f(\mathbf{x})_{\text{SVM RBF}}можно рассматривать как частный случай множества RBF-нейронных сетей. При этом любые RBF нейронные сети являются альтернативой MLP, так как если мы ее представим как композицию суммы функций, то каждая функция является не w \cdot x, а||w-x||.

Одна из пионерских работ в области RBF нейронных сетей была написана Дж. Парком и В. Сандбергом. Там также предоставляется теорема универсальной аппроксимации для ограниченного количества слоев и произвольного количества нейронов.

Она гласит, что если ядроK_\text{RBF}является интегрируемым, ограниченным и интеграл на всей области определения не нулевой, тогда:

f_\text{Park, Sandberg}(\mathbf{x}) = \sum_{i=1}^{M} w_{i} \cdot K_\text{RBF}\left(\frac{\mathbf{x} - \mathbf{c}_{i}}{\lambda_i}\right)

является универсальным аппроксиматором в пространствахL^{p}(\mathbb{R}^{r})для любого p \in [1, \infty)и пространтсвах непрерывных функций C(\mathbb{R}^r).

По сути, выполняя данное преобразование, данная нейронная сеть способна аппроксимировать широкий ряд функций:

f_\text{Park, Sandberg}(\mathbf{x}) = \begin{bmatrix} w_1 & w_2 & \dots & w_M \end{bmatrix} \begin{bmatrix} K_\text{RBF}\left(\frac{\mathbf{x} - \mathbf{c}_1}{\lambda_1}\right) \\ K_\text{RBF}\left(\frac{\mathbf{x} - \mathbf{c}_2}{\lambda_2}\right) \\ \vdots \\ K_\text{RBF}\left(\frac{\mathbf{x} - \mathbf{c}_M}{\lambda_M}\right) \end{bmatrix}

Гдеc_{i}– это центры RBF ядра (веса),\lambda_i– ширина ядра.

При этом, несмотря на частое использование Гауссового ядра, существуют и другие известные ядра, которые также могут выполнять скалярное произведение в бесконечномерном пространстве, а именно:

  • Inverse Quadratic RBF

    K_{\text{IQ}}(\mathbf{x}, \mathbf{y}) = \frac{1}{1 + (\lambda \cdot \mathbf{\|x} - \mathbf{y}\|)^2}
  • Inverse Multiquadric RBF

    K_{\text{IMQ}}(\mathbf{x}, \mathbf{y}) = \frac{1}{\sqrt{1 + (\lambda\cdot \| \mathbf{x} - \mathbf{y} \|)^2}}

И сейчас я приведу для каждого доказательство:

Inverse Quadratic RBF
\| \mathbf{x} - \mathbf{y} \|^2 = \| \mathbf{x} \|^2 + \| \mathbf{y} \|^2 - 2 \mathbf{x}^\top \cdot \mathbf{y}K_{\text{IQ}}(\mathbf{x}, \mathbf{y}) = \frac{1}{1 + \lambda^2 (\|\mathbf{x}\|^2 + \|\mathbf{y}\|^2 - 2 \mathbf{x}^\top \cdot \mathbf{y})} = \frac{1}{a - b (\mathbf{x}^\top \cdot \mathbf{y})}

где а и b равны:

a = 1 + \lambda^2 (\|\mathbf{x}\|^2 + \|\mathbf{y}\|^2), \quad b = 2\lambda^2

Приведение к форме, удобной для разложения:

K_{\text{IQ}}(\mathbf{x}, \mathbf{y}) = \frac{1}{a - b (\mathbf{x}^\top \cdot \mathbf{y})} = \frac{1}{a} \cdot \frac{1}{1 - \frac{b}{a} (\mathbf{x}^\top \cdot \mathbf{y})}

При условии, что:

\left| \frac{b}{a} (\mathbf{x}^\top \cdot \mathbf{y}) \right| < 1

Можем использовать разложение в геометрическую прогрессию:

\frac{1}{1 - z} = \sum_{j=0}^{\infty} z^j

Таким образом, получаем:

K_{\text{IQ}}(\mathbf{x}, \mathbf{y}) = \frac{1}{a} \sum_{j=0}^{\infty} \left( \frac{b}{a} (\mathbf{x}^\top \cdot \mathbf{y}) \right)^j = \frac{1}{a} \sum_{j=0}^{\infty} \left( \frac{b}{a} \right)^j (\mathbf{x}^\top \cdot \mathbf{y})^j

Определяем компоненты функции преобразования\varphi_{\text{IQ}}(x):

\varphi_{\text{IQ}}(\mathbf{x}) = \left[ \varphi_{\text{IQ }j}(\mathbf{x}) \right]_{j=0}^{M}, \quad M\to\infty

{}где:

\varphi_{\text{IQ }j}(\mathbf{x}) = \sqrt{\frac{1}{a}} \left( \frac{b}{a} \right)^{j/2} \mathbf{x}^{\otimes j}

Здесь:

\mathbf{x}^{\otimes j} — тензорное произведение вектора \mathbf{x} с самим собой j раз.

Вычисление скалярного произведения:

\varphi_{\text{IQ}}(\mathbf{x})^\top \cdot \varphi_{\text{IQ}}(\mathbf{y}) \\[20pt] = \sum_{j=0}^{M} \varphi_{\text{IQ }j}(\mathbf{x})^\top \cdot \varphi_{\text{IQ }j}(\mathbf{y}) = \frac{1}{a} \sum_{j=0}^{M} \left( \frac{b}{a} \right)^j (\mathbf{x}^\top \cdot \mathbf{y})^j = K_{\text{IQ}}(\mathbf{x}, \mathbf{y})\\[20pt]M \to \infty
Inverse Multiquadric RBF
\|\mathbf{x} - \mathbf{y}\|^2 = \|\mathbf{x}\|^2 + \|\mathbf{y}\|^2 - 2 \mathbf{x}^\top \cdot \mathbf{y}

Тогда ядро можно записать как:

K_{\text{IMQ}}(\mathbf{x}, \mathbf{y}) = \frac{1}{\sqrt{1 + \lambda^2 (\|\mathbf{x}\|^2 + \|\mathbf{y}\|^2 - 2 \mathbf{x}^\top \cdot \mathbf{y})}}

Как и в доказательстве в предыдущем ядре:

a = 1 + \lambda^2 (\|\mathbf{x}\|^2 + \|\mathbf{y}\|^2), \quad b = 2 \lambda^2

Тогда ядро переписывается как:

K_{\text{IMQ}}(\mathbf{x}, \mathbf{y}) = \frac{1}{\sqrt{a - b (\mathbf{x}^\top \cdot \mathbf{y})}}

Для удобства вынесем\sqrt{a} за скобку:

K_{\text{IMQ}}(\mathbf{x}, \mathbf{y}) = \frac{1}{\sqrt{a}} \left(1 - \frac{b}{a} (\mathbf{x}^\top \cdot \mathbf{y})\right)^{-\frac{1}{2}}

Теперь наша цель – разложить выражение в степенной ряд:

\left( 1 - \frac{b}{a} (\mathbf{x}^\top \cdot \mathbf{y}) \right)^{-\frac{1}{2}}

Биномиальное разложение для(1 - z)^{-j}при|z| < 1и j = 0.5:

(1 - z)^{-1/2} = \sum_{j=0}^{\infty} \frac{(2j)!}{(j!)^2 4^j}  z^j

Исходя из разложения, компоненты\varphi_{\text{IMQ}}(\mathbf{x})можно определить как:

\varphi_{\text{IMQ}}(\mathbf{x}) = \left[\varphi_{\text{IMQ }j}\right]_{j=0}^M, \quad M\to\infty

где:

\varphi_{\text{IMQ }j}(\mathbf{x}) = \sqrt{\frac{(2j)!}{(j!)^2 4^j}} \left( \frac{b}{a} \right)^{j/2} \mathbf{x}^{\otimes j}

Здесь:

\mathbf{x}^{\otimes j} — тензорное произведение вектора\mathbf{x}с самим собой j раз.

Скалярное произведение функций неявного преобразования будет:

\varphi_{\text{IMQ}}(\mathbf{x})^\top\cdot \varphi_{\text{IMQ}}(\mathbf{y})  \\[20pt] =\sum_{j=0}^{M} \varphi_{\text{IMQ }j}(\mathbf{x})^\top \cdot \varphi_{\text{IMQ }j}(\mathbf{y})= \sum_{j=0}^{M} \left( \frac{(2j)!}{(j!)^2 4^j} \left( \frac{b}{a} \right)^j (\mathbf{x}^\top \cdot \mathbf{y})^j \right) = K_{\text{IMQ}},\\[20pt]M \to \infty
Проверка сходимости разложения

Несмотря на то, что видно, что данные ядра вычисляют скалярное произведение в бесконеченомерном пространстве, это происходит при условии, когда вышеперечисленные ряды сходятся, поэтому сейчас проверим условие сходимости.

Условие сходимости геометрической прогрессии для обоих ядер:

|z| < 1\left| \frac{b}{a} (\mathbf{x}^\top \cdot \mathbf{y}) \right| < 1

По неравенству Коши-Буняковского:

| \mathbf{x}^\top \cdot \mathbf{y} | \leq \| \mathbf{x} \| \| \mathbf{y} \|\left| \frac{b}{a} (\mathbf{x}^\top \cdot \mathbf{y}) \right| \leq \frac{b}{a} \| \mathbf{x} \| \| \mathbf{y} \| = \frac{2\lambda^2 \| \mathbf{x} \| \| \mathbf{y} \|}{1 + \lambda^2 (\| \mathbf{x} \|^2 + \| \mathbf{y} \|^2)}

Наша задача — показать, что:

\frac{2\lambda^2 \| \mathbf{x} \| \| \mathbf{y} \|}{1 + \lambda^2 (\| \mathbf{x} \|^2 + \| \mathbf{y} \|^2)}  < 1

Умножим обе части неравенства на знаменатель (так как знаменатель не равен нулю и всегда положителен):

2\lambda^2 \| \mathbf{x} \| \| \mathbf{y} \| < 1 + \lambda^2 (\| \mathbf{x} \|^2 + \| \mathbf{y} \|^2)\lambda^2 ( 2\| \mathbf{x} \| \| \mathbf{y} \| -   \| \mathbf{x} \|^2 -  \| \mathbf{y} \|^2)< 1

Заметим, что:

2\| \mathbf{x} \| \| \mathbf{y} \| -   \| \mathbf{x} \|^2 -  \| \mathbf{y} \|^2 =  -(\| \mathbf{x} \| -  \| \mathbf{y} \|)^2 \leq 0 < 1

Так как неравенство является справедливым:

\lambda^2 ( 2\| \mathbf{x} \| \| \mathbf{y} \| -   \| \mathbf{x} \|^2 -  \| \mathbf{y} \|^2)< 1

То выполняется и данное условие:

\left| \frac{b}{a} (\mathbf{x}^\top \cdot \mathbf{y}) \right| < 1

3.2.1 Многослойная RBF нейронная сеть

То, что мы рассмотрели RBF-нейронную сеть с одним скрытым слоем, в целом можно экстраполировать на многослойную, где мы рекурсивно применяем набор RBF-ядер.

Для первого слоя:

\mathbf{h}^{(1)} =  \begin{bmatrix}  K_\text{RBF}\left(\frac{\mathbf{x} - \mathbf{c}_1^{(1)}}{\lambda_1^{(1)}}\right) \\  K_\text{RBF}\left(\frac{\mathbf{x} - \mathbf{c}_2^{(1)}}{\lambda_2^{(1)}}\right) \\  \vdots \\  K_\text{RBF}\left(\frac{\mathbf{x} - \mathbf{c}_{M_1}^{(1)}}{\lambda_{M_1}^{(1)}}\right)  \end{bmatrix}

Для второго слоя:

\mathbf{h}^{(2)} =   \begin{bmatrix}   K_\text{RBF}\left(\frac{\mathbf{h}^{(1)} - \mathbf{c}_1^{(2)}}{\lambda_1^{(2)}}\right) \\   K_\text{RBF}\left(\frac{\mathbf{h}^{(1)} - \mathbf{c}_2^{(2)}}{\lambda_2^{(2)}}\right) \\   \vdots \\   K_\text{RBF}\left(\frac{\mathbf{h}^{(1)} - \mathbf{c}_{M_2}^{(2)}}{\lambda_{M_2}^{(2)}}\right)   \end{bmatrix}

И так далее, доL-го слоя:

f_\text{MRBFN}(\mathbf{x}) = \begin{bmatrix} w_1 & w_2 & \dots & w_{M_L} \end{bmatrix} \cdot \mathbf{h}^{(L)}

Здесь:

  • \mathbf{c}_i^{(l}– центры RBF-нейронов на l-м слое.

  • \lambda^{(l)}_i– ширина ядра на l-м слое.

  • M_l– количество нейронов на l-м слое.

Но увы, многослойные RBF-нейронные сети не получили широкой популярности в сообществе. Исследований на эту тему крайне мало, обсуждений на форумах тоже практически не встретишь. Более того, мне так и не удалось найти формального доказательства того, что многослойная RBF-сеть обладает свойством универсальной аппроксимации. Поэтому я приведу это доказательство сам.

Теорема универсальной аппроксимации многослойной RBF нейронной сети

В данном доказательстве за основу будет использоватся работа Дж. Парка и В. Сандберга – «Universal Approximation Using Radial-Basis-Function Networks»

Теорема 1: ПлотностьS_Kв L^p(\mathbb{R}^r) (Park, J.; I. W. Sandberg, 1991)

Пусть K: \mathbb{R}^r \rightarrow \mathbb{R} – интегрируемая, ограниченная функция, непрерывная почти всюду и такая, что:

\int_{\mathbb{R}^n} K(x) \, dx \neq 0

Тогда семействоS_K,​состоящее из конечных линейных комбинаций сдвигов функцииK,

S_K = \left\{ \sum_{i=1}^M w_i K(\mathbf{x} - \mathbf{c}_i) : M \in \mathbb{N},\ w_i \in \mathbb{R},\ \mathbf{c}_i \in \mathbb{R}^r \right\}

плотно вL^p(\mathbb{R}^r)для любогоp \in [1, \infty).

Tеорема 2: Плотность S_K​ в C(\mathbb{R}^r) с метрикой d (Park, J.; I. W. Sandberg, 1991)

ПустьK: \mathbb{R}^r \rightarrow \mathbb{R}– интегрируемая, ограниченная и непрерывная функция, такая, что:

\int_{\mathbb{R}^r} K(x) \, dx \neq 0

Тогда семействоS_K,​состоящее из функций вида:

q(x) = \sum_{i=1}^M w_i K(x - c_i)

гдеM \in \mathbb{N},w_i \in \mathbb{R},иc_i \in \mathbb{R}^r,плотно вC(\mathbb{R}^r)относительно метрики:

d(f, g) = \sum_{n=1}^\infty 2^{-n} \frac{\| (f - g) \cdot 1_{[-n, n]^r} \|_\infty}{1 + \| (f - g) \cdot 1_{[-n, n]^r} \|_\infty}

Теорема 3: Универсальная аппроксимация многослойными RBF сетями

ПустьK: \mathbb{R}^r \rightarrow \mathbb{R}– интегрируемая, ограниченная и непрерывная функция, такая что:

\int_{\mathbb{R}^r} K(x) \, dx \neq 0

иKне является константой. Предположим, что каждый скрытый слой сети имеет параметр сглаживания \lambda_l > 0.Тогда семейство многослойных RBF сетей с произвольным числом слоев L \geq 2и произвольным числом нейронов в каждом слое M_l плотно в C(\mathbb{R}^r) относительно равномерной аппроксимации на компактных множествах.

Доказательство:

Докажем это методом математической индукции по числу слоевL.

Базовый случай (L = 2):

При L = 2 сеть представляет собой стандартную RBF сеть с одним скрытым слоем.
Согласно теореме 2, семейство S_K плотно в C(\mathbb{R}^r).
Следовательно, утверждение верно для L = 2.

Индуктивный шаг:

Предположим, что теорема верна для некоторого L = k \geq 2,то есть любую функцию f \in C(\mathbb{R}^r) можно аппроксимировать равномерно на компактных множествах с помощью сети с k слоями.

Теперь докажем, что утверждение верно дляL = k + 1.

Лемма 3.1: Композиция универсальных аппроксиматоров

Если функцию f: \mathbb{R}^r \rightarrow \mathbb{R} можно аппроксимировать с произвольной точностью функциями из семейства A,а функцию h: \mathbb{R} \rightarrow \mathbb{R} можно аппроксимировать с произвольной точностью функциями из семейства B,то композицияh \circ fможет быть аппроксимирована композициями функций из B и функций изA.

Доказательство:

Пусть \hat{f} \in A и \hat{h} \in B такие, что

\| f - \hat{f} \|_\infty < \delta, \quad \| h - \hat{h} \|_\infty < \delta\| h \circ f - \hat{h} \circ \hat{f} \|_\infty \leq \| h \circ f - h \circ \hat{f} \|_\infty + \| h \circ \hat{f} - \hat{h} \circ \hat{f} \|_\infty

Поскольку h равномерно непрерывна на значениях функции f,существуетL_h > 0такое, что

\| h \circ f - h \circ \hat{f} \|_\infty \leq L_h \| f - \hat{f} \|_\infty < L_h \delta\| h \circ \hat{f} - \hat{h} \circ \hat{f} \|_\infty = \| h - \hat{h} \|_\infty < \delta\| h \circ f - \hat{h} \circ \hat{f} \|_\infty < (L_h + 1) \delta

Выбирая \delta достаточно малым, мы можем сделать ошибку аппроксимации произвольно малой.

Лемма 3.2: Композиция в многослойных сетях

Если функция f может быть аппроксимирована с точностью \delta сетью сk слоями, и функция идентичности \text{id}: \mathbb{R} \rightarrow \mathbb{R} может быть аппроксимирована на компактном множестве с точностью \delta дополнительным слоем (с использованием функций изS_K​), то сеть с k + 1 слоями аппроксимирует f с точностью (L_h + 1) \delta.

Доказательство:

Пустьf_k– аппроксимация функции f сетью сkслоями, так что| f - f_k |_\infty < \delta.

Пустьh– функция идентичности, а h' – её аппроксимация дополнительным слоем, так что \| h - h' \|_\infty < \delta на значениях функции f_k​.

Тогда h' \circ f_k аппроксимируетfс ошибкой (L_h + 1) \delta,используя результат из леммы 3.1.

Лемма 3.3: Линейная комбинация универсальных аппроксиматоров

Линейная комбинация функций, каждая из которых может аппроксимировать любую функцию из определенного класса с заданной точностью, также может аппроксимировать любую функцию из этого класса с нужной точностью.

Доказательство:

Пусть f_i​аппроксимирует f с \| f - f_i \|_\infty < \epsilon_iдляi = 1, \dots, N.

Рассмотрим линейную комбинацию:

F = \sum_{i=1}^N w_i f_i

Выбирая коэффициентыc_iсоответствующим образом и минимизируя \epsilon_i,можно обеспечить \| f - F \|_\infty < \epsilon для любого желаемого\epsilon > 0.

Завершение индуктивного шага:

По индукционному предположению существует f_k такая, что

\| f - f_k \|_\infty < \frac{\epsilon}{2(L_h + 1)}

Поскольку K удовлетворяет условиям теоремы 2, функцию идентичности можно аппроксимировать на значениях функции f_k с точностью

\delta = \frac{\epsilon}{2(L_h + 1)}

Функция f_{k+1} = h' \circ f_k​ аппроксимирует f с точностью

\| f - f_{k+1} \|_\infty \leq (L_h + 1) \delta = \epsilon / 2

Используя лемму 3.3, можно настроить выходной слой (линейная комбинация выходов) для уменьшения ошибки до значения менее \epsilon.

Следовательно, сеть с k + 1слоями может аппроксимировать f с точностью \epsilon.

По индукции, теорема 3 верна для всех L \geq 2.

Следствие 3.1: Универсальная аппроксимация векторнозначных функций

Многослойные RBF сети с любым числом слоев L \geq 2 и любым числом выходов m являются универсальными аппроксиматорами для векторнозначных функций f: \mathbb{R}^r \rightarrow \mathbb{R}^m.

Так как каждая компонента f_j векторнозначной функции f может аппроксимироваться независимо многослойной RBF сетью, как показано в теореме 3. Объединяя аппроксимации всех компонент, получаем аппроксимацию функцииf с нужной точностью.

Следствие 3.2: Универсальная аппроксимация в пространствах

Многослойные RBF сети являются универсальными аппроксиматорами в пространстве L^p(\mathbb{R}^r) для любого p \in [1, \infty).

Используя теорему 1 и теорему 3, мы видим, что семейство S_K плотно в L^p(\mathbb{R}^r).Следовательно, многослойные RBF сети могут аппроксимировать любую функцию в L^p(\mathbb{R}^r)с произвольной точностью.

Основная причина, почему этот подход остался в тени, кроется в том, как RBF-сети традиционно обучали. Обычно процесс выглядел так: данные сначала кластеризовали, центры кластеров брали в качестве параметров для RBF-нейронов, а затем настраивали веса только для линейного выходного слоя. В результате необходимость в многослойной архитектуре просто отпадала, делая её использование нелогичным и неоправданным.

Однако с развитием машинного обучения, когда стали массово применять метод обратного распространения ошибки, многослойные сети набрали большую популярность. Казалось бы, это должно было дать новый импульс и для многослойных RBF-сетей. Но увы, ассоциации с этим методом остались на уровне устаревшего подхода с одним скрытым слоем. Это, мягко говоря, несправедливо, ведь потенциал таких сетей гораздо шире.

В следующем разделе про KAN я более подробно покажу это, сравнив многослойные RBF-сети с другим, но подобным по концепции преобразования, вариантом KAN.

Реализация многослойной RBF нейронной сети на PyTorch.

Так как данная сеть может на практике сталкиватся с проблемой затухающих градиентов, я приведу два варианиа кода: с реализацией SkipConnection и DenseNet.

SkipConection MRBFN

import torch
import torch.nn as nn

# ---------------------
# Классический RBF слой
# ---------------------

class RBF(nn.Module):
    def __init__(self, in_features, out_features, basis_func, per_dimension_sigma=False):
        """
        Arg:
            per_dimension_sigma (bool): 
                Если True, для каждого выходного нейрона и каждого входного признака обучается отдельное значение σ.
                Если False, для каждого выходного нейрона используется одно общее значение σ для всех входных признаков.
        """
        super(RBF, self).__init__()
        self.in_features = in_features
        self.out_features = out_features
        self.per_dimension_sigma = per_dimension_sigma
        self.basis_func = basis_func

        if self.per_dimension_sigma:
            self.log_sigmas = nn.Parameter(torch.Tensor(out_features, in_features))

        else:
            self.log_sigmas = nn.Parameter(torch.Tensor(out_features))

        self.centres = nn.Parameter(torch.Tensor(out_features, in_features))
        self.reset_parameters()

    def reset_parameters(self):

        nn.init.normal_(self.centres, mean=0.0, std=1.0)
        nn.init.constant_(self.log_sigmas, 0.0)

    def forward(self, input):

        B = input.size(0)
        x = input.unsqueeze(1).expand(B, self.out_features, self.in_features)
        c = self.centres.unsqueeze(0).expand(B, self.out_features, self.in_features)

        if self.per_dimension_sigma:
            sigma = torch.exp(self.log_sigmas).unsqueeze(0).expand(B, self.out_features, self.in_features)
            distances = ((x - c).pow(2) / sigma).sum(dim=-1)

        else:
            sigma = torch.exp(self.log_sigmas).unsqueeze(0).expand(B, self.out_features)
            distances = (x - c).pow(2).sum(dim=-1) / sigma

        return self.basis_func(distances)

def gaussian_rbf(distances):
    return torch.exp(-distances)

      
# -----------------------------------------------------
# RBF слой с использованием идеи SkipConnection(ResNet)
# -----------------------------------------------------
  
class RBFResBlock(nn.Module):
    def __init__(self, in_features, out_features, basis_func, per_dimension_sigma=False):
        super(RBFResBlock, self).__init__()

        self.rbf = RBF(in_features, out_features, basis_func, per_dimension_sigma)

        if in_features != out_features:
            self.skip_connection = nn.Linear(in_features, out_features)

        else:
            self.skip_connection = nn.Identity()

    def forward(self, x):

        rbf_output = self.rbf(x)
        skip_connection_output = self.skip_connection(x)
        return rbf_output + skip_connection_output

# ------------------------
# Пример модели с 4 слоями
# ------------------------
      
class ResMRBFN(nn.Module):
    def __init__(self, in_features, hidden_units1, hidden_units2, hidden_units3, out_features, per_dimension_sigma=False):
        super(ResMRBFN, self).__init__()

        self.rbf_block1 = RBFResBlock(in_features, hidden_units1, gaussian_rbf, per_dimension_sigma)

        self.rbf_block2 = RBFResBlock(hidden_units1, hidden_units2, gaussian_rbf, per_dimension_sigma)

        self.rbf_block3 = RBFResBlock(hidden_units2, hidden_units3, gaussian_rbf, per_dimension_sigma)

        self.linear_final = nn.Linear(hidden_units3, out_features)

    def forward(self, x):

        x1 = self.rbf_block1(x)

        x2 = self.rbf_block2(x1)

        x3 = self.rbf_block3(x2)

        return self.linear_final(x3)

Dense MRBFN

import torch
import torch.nn as nn

# ---------------------
# Классический RBF слой
# ---------------------

class RBF(nn.Module):
    def __init__(self, in_features, out_features, basis_func, per_dimension_sigma=False):
        """
        Arg:
            per_dimension_sigma (bool): 
                Если True, для каждого выходного нейрона и каждого входного признака обучается отдельное значение σ.
                Если False, для каждого выходного нейрона используется одно общее значение σ для всех входных признаков.
        """
        super(RBF, self).__init__()
        self.in_features = in_features
        self.out_features = out_features
        self.per_dimension_sigma = per_dimension_sigma
        self.basis_func = basis_func

        if self.per_dimension_sigma:
            self.log_sigmas = nn.Parameter(torch.Tensor(out_features, in_features))

        else:
            self.log_sigmas = nn.Parameter(torch.Tensor(out_features))

        self.centres = nn.Parameter(torch.Tensor(out_features, in_features))
        self.reset_parameters()

    def reset_parameters(self):

        nn.init.normal_(self.centres, mean=0.0, std=1.0)
        nn.init.constant_(self.log_sigmas, 0.0)

    def forward(self, input):

        B = input.size(0)
        x = input.unsqueeze(1).expand(B, self.out_features, self.in_features)
        c = self.centres.unsqueeze(0).expand(B, self.out_features, self.in_features)

        if self.per_dimension_sigma:
            sigma = torch.exp(self.log_sigmas).unsqueeze(0).expand(B, self.out_features, self.in_features)
            distances = ((x - c).pow(2) / sigma).sum(dim=-1)

        else:
            sigma = torch.exp(self.log_sigmas).unsqueeze(0).expand(B, self.out_features)
            distances = (x - c).pow(2).sum(dim=-1) / sigma

        return self.basis_func(distances)

def gaussian_rbf(distances):
    return torch.exp(-distances)

      
# ---------------------------------------
# RBF слой с использованием идей DenseNet
# ---------------------------------------
     
class RBFDenseBlock(nn.Module):
    def __init__(self, in_features, out_features, basis_func, per_dimension_sigma=False):
        super(RBFDenseBlock, self).__init__()

        self.rbf = RBF(in_features, out_features, basis_func, per_dimension_sigma)

    def forward(self, x, previous_outputs):

        combined_inputs = torch.cat(previous_outputs, dim=1)

        rbf_densenet_output = self.rbf(combined_inputs)

        return rbf_densenet_output

      
class TransitionLayer(nn.Module):
    def __init__(self, in_features, out_features):
        super(TransitionLayer, self).__init__()

        self.transition = nn.Sequential(
            nn.Linear(in_features, out_features),
            nn.Mish(),
        )

    def forward(self, x):
        return self.transition(x)      

      
# ------------------------
# Пример модели с 4 слоями
# ------------------------

def gaussian_rbf(distances):
    return torch.exp(-distances)


class DenseMRBFN(nn.Module):
    def __init__(self, in_features, hidden_units1, hidden_units2, hidden_units3, out_features, per_dimension_sigma=False):
        super(DenseMRBFN, self).__init__()

        self.rbf_block1 = RBFDenseBlock(in_features, hidden_units1, gaussian_rbf, per_dimension_sigma)
        self.transition1 = TransitionLayer(in_features + hidden_units1, hidden_units1)

        self.rbf_block2 = RBFDenseBlock(in_features + hidden_units1, hidden_units2, gaussian_rbf, per_dimension_sigma)
        self.transition2 = TransitionLayer(in_features + hidden_units1 + hidden_units2, hidden_units2)

        self.rbf_block3 = RBFDenseBlock(in_features + hidden_units1 + hidden_units2, hidden_units3, gaussian_rbf, per_dimension_sigma)
        self.transition3 = TransitionLayer(in_features + hidden_units1 + hidden_units2 + hidden_units3, hidden_units3)

        self.linear_final = nn.Linear(hidden_units3, out_features)

    def forward(self, x):
        outputs = [x]

        x1 = self.rbf_block1(x, outputs)
        outputs.append(x1)
        x1 = self.transition1(torch.cat(outputs, dim=1))

        x2 = self.rbf_block2(x1, outputs)
        outputs.append(x2)
        x2 = self.transition2(torch.cat(outputs, dim=1))

        x3 = self.rbf_block3(x2, outputs)
        outputs.append(x3)
        x3 = self.transition3(torch.cat(outputs, dim=1))

        return self.linear_final(x3)

4. Объяснение архитектуры KAN: Kolmogorov-Arnold Networks

Для начала предлагаю определить ключевые термины в контексте данного раздела, чтобы избежать путаницы в дальнейшем.

KAN – семейство нейронных сетей прямого распространения имеющих следующий вид:

{\small f_\text{KAN}(\mathbf{x}) = \sum_{i_L=1}^{n_L} \phi_{L-1, i_L, i_{L-1}} \left(   \sum_{i_{L-1}=1}^{n_{L-1}} \phi_{L-2, i_{L-1}, i_{L-2}} \left(   \cdots \left(   \sum_{i_1=1}^{n_1} \phi_{1, i_2, i_1} \left(   \sum_{i_0=1}^{n_0} \phi_{0, i_1, i_0}(x_{i_0})  \right)   \right)     \right)   \right)}

То есть искомую функцию можно разложить на суперпозиции суммы функций одной переменной \phi_{l,i_{l+1},i_l}(x_{i_l}).В последнем слое индекс i_Lозначает, что функция может быть векторозначной.

Где каждая сумма (слой) \sum_{i_l=1}^{n_l}  \phi_{l,i_{l+1},i_l}(x_{i_l}) представляет собой преобразование подобного рода:

\mathbf{x}_{l+1} = \sum_{i_l=1}^{n_l}  \phi_{l,i_{l+1},i_l}(x_{i_l}) \\[20pt] \\= \left[ \begin{array}{cccc}    \phi_{l,1,1}(x_{1}) & + & \phi_{l,1,2}(x_{2}) & + \cdots + & \phi_{l,1,n_l}(x_{n_l}) \\    \phi_{l,2,1}(x_{1}) & + & \phi_{l,2,2}(x_{2}) & + \cdots + & \phi_{l,2,n_l}(x_{n_l}) \\    \vdots &  & \vdots & \ddots & \vdots \\    \phi_{l,n_{l+1},1}(x_{1}) & + & \phi_{l,n_{l+1},2}(x_{2}) & + \cdots + & \phi_{l,n_{l+1},n_l}(x_{n_l}) \\    \end{array} \right]

B-spline KAN – частный случай KAN при\phi_{l,i_{l+1},i_l}(x_{i_l}) = \phi_{\text{BSKAN }l, i_{l+1}, i_l}(x_{i_l})

\phi_\text{BSKAN}(x)=w_b​​f_\text{base}(x)+w_s f_\text{spline}(x)​f_\text{base} = \text{silu}(x) = \frac{x}{1 + e^{-x}}f_\text{spline}(x) = \sum_i w_i B^k_i(x), \\[10pt] \text{где}\   B_i(x) \ \text{– B-сплайн степени k на одном слое}

Нейронная сеть будет иметь следующий вид:

f_\text{BSKAN}(\mathbf{x}) = \sum_{i_L=1}^{n_L} \phi_{\scriptscriptstyle \text{BSKAN } L-1, i_L, i_{L-1}}  \left(   \cdots \left(   \sum_{i_1=1}^{n_1} \phi_{\scriptscriptstyle \text{BSKAN } 1, i_2, i_1} \left(   \sum_{i_0=1}^{n_0} \phi_{\scriptscriptstyle \text{BSKAN } 0, i_1, i_0} (x_{i_0})  \right)   \right)   \right)

Где каждый слой представляет собой преобразование подобного рода:

\mathbf{x}_{l+1} = \sum_{i_l=1}^{n_l} \phi_{\text{BSKAN }l, i_{l+1}, i_l}(x_{i_l}) \\[20pt]=    \begin{bmatrix}    \phi_{\text{BSKAN }_{l,1,1}}(x_{1}) + \phi_{\text{BSKAN }_{l,1,2}}(x_{2}) + \dots + \phi_{\text{BSKAN }_{l,1,n_l}}(x_{n_l}) \\    \phi_{\text{BSKAN }_{l,2,1}}(x_{1}) + \phi_{\text{BSKAN }_{l,2,2}}(x_{2}) + \dots + \phi_{\text{BSKAN }_{l,2,n_l}}(x_{n_l}) \\    \vdots \\    \phi_{\text{BSKAN }_{l,n_{l+1},1}}(x_{1}) + \phi_{\text{BSKAN }_{l,n_{l+1},2}}(x_{2}) + \dots + \phi_{\text{BSKAN }_{l,n_{l+1},n_l}}(x_{n_l})    \end{bmatrix}

Официальная реализация B-spline KAN доступна в репозитории pykan на GitHub.

Хочу также уточнить, что авторы оригинального исследования определяют также KAN, но остановились на B-сплайнах как удобном выборе для параметризации этих одномерных функций. Они просто рассматривают реализацию, тогда как моя цель – обобщить многие архитектуры, используя их расширение теоремы Колмогорова-Арнольда на произвольный случай. Поэтому я и назвал их реализацию B-spline KAN, отделив её от KAN.

4.1 MLP как частный случай KAN

Мы уже рассматривали аффинное преобразование и применение функции активации как суперпозицию функций одной переменной в пункте: 2.2 «Аффинное преобразование и применение функции активации как функции преобразования и суперпозиции суммы функций».

\mathbf{x}_{l+1} = \sum_{i_l=1}^{n_l}  \phi_{l,i_{l+1},i_l}(x_{i_l}) \\[20pt]   =\left[ \begin{array}{cccc}     \phi_{l,1,1}(x_{1}) & + & \phi_{l,1,2}(x_{2}) & + \cdots + & \phi_{l,1,n_l}(x_{n_l}) \\     \phi_{l,2,1}(x_{1}) & + & \phi_{l,2,2}(x_{2}) & + \cdots + & \phi_{l,2,n_l}(x_{n_l}) \\     \vdots &  & \vdots & \ddots & \vdots \\     \phi_{l,n_{l+1},1}(x_{1}) & + & \phi_{l,n_{l+1},2}(x_{2}) & + \cdots + & \phi_{l,n_{l+1},n_l}(x_{n_l}) \\     \end{array} \right], \\[10pt] \quad \\[10pt]  \text{где} \\[10pt]   \phi_{l,i_{l+1},i_l}(x_{i_l}) = w_{l,i_{l+1},i_l }\cdot f_{\text{activation, }l}(x_{i_l})+ b_{l,i_{l+1}, i_l}

Если мы сравним это со слоем в KAN, то увидим, что функция активации и последующее аффинное преобразование составляют один слой в KAN. Первый слой, очевидно, будет состоять из линейных функций. \phi_{0,i_1,i_0}(x_{l,i}) = w_{ i_1, i_0} \cdot x_{i_0}+ b_{ i_1, i_0}.И в контексте данной интерпретации все функции\phi_{l,i_{l+1},i_l}(x_{i_l})являются обучаемыми, хоть и не могут аппроксимировать в большинстве своем функции одной переменной. Это связано с тем, что они, по сути, являются масштабированными функциями активации, которые также в большинстве своем не обладают данной возможностью.

Тем самым можно заключить логичный вывод, что MLP является частным случаем KAN. Несмотря на то, что KAN и MLP являются подвидами нейронных сетей прямого распространения, KAN обобщает MLP на случай произвольных функций одной переменной.

Но также предлагаю рассмотреть, что из себя представляет часть существующих теорем универсальной аппроксимации для MLP в контексте KAN. Для начала рассмотрим теорему Цыбенко, которая утверждает, что нейронные сети с одним скрытым слоем и произвольным числом нейронов, использующие сигмоидные функции активации, обладают свойством универсальной аппроксимации.

Это идентично KAN с двумя слоями:

f_\text{Cybenko}(\mathbf{x}) = \sum_{i_1=1}^{n_1} \phi_{1,i_1} \left( \sum_{i_0=1}^{n_0} \phi_{0,i_1,i_0}(x_{i_0}) \right)

В первом слое все функции будут линейными, а во втором используются сигмоидные функции активации и масштабирующие коэффициенты для каждой из них.

Первый слой:

\mathbf{x}_1 = \sum_{i_0=1}^{n_0} w_{i_1,i_0} x_{i_0} + b_{i_1} \\[20pt]  =\begin{bmatrix}     w_{1,1} x_{1} & + & w_{1,2} x_{2} & + & \cdots & + & w_{1,n_0} x_{n_0} & + & b_{1} \\     w_{2,1} x_{1} & + & w_{2,2} x_{2} & + & \cdots & + & w_{2,n_0} x_{n_0} & + & b_{2} \\     \vdots &  & \vdots &  & \ddots &  & \vdots &  & \vdots \\     w_{n_1,1} x_{1} & + & w_{n_1,2} x_{2} & + & \cdots & + & w_{n_1,n_0} x_{n_0} & + & b_{n_1}     \end{bmatrix}\\[30pt]  = \sum_{i_0=1}^{n_0} \phi_{i_1,i_0}(x_{i_0})\\[20pt]  =   \begin{bmatrix}    \phi_{1,1}(x_{1}) + \phi_{1,2}(x_{2}) + \dots + \phi_{1,n_0}(x_{n_0}) + \phi_{1,n_0}(x_{n_0}) \\[20pt]    \phi_{2,1}(x_{1}) + \phi_{2,2}(x_{2}) + \dots + \phi_{2,n_0}(x_{n_0}) + \phi_{2,n_0}(x_{n_0}) \\    \vdots \\    \phi_{n_1,1}(x_{1}) + \phi_{n_1,2}(x_{2}) + \dots + \phi_{n_1,n_0}(x_{n_0}) + \phi_{n_1,n_0}(x_{n_0})     \end{bmatrix},  \\[50pt]

И второй выходной:

f_\text{Cybenko}(\mathbf{x}_1) = \sum_{i_1=1}^{n_1} w_{i_1} \sigma(x_{i_!}) +b  \\[25pt]  = w_{1} \sigma(x_1) + w_{2} \sigma(x_2) + \cdots + w_{n_1} \sigma(x_{n_1})  +b\\[20pt]= \sum_{i_1=1}^{n_1} \phi_{1,i_1} \left( \sum_{i_0=1}^{n_0} \phi_{0,i_1,i_0}(x_{i_0}) \right)

В итоге мы получаем модель, в которой сначала выполняется аффинное преобразование в определённое подпространствоN- мерного пространства, затем применяется сигмоидная функция активации, после чего выполняется ещё одно аффинное преобразование и на выходе получается скаляр (для векторнозначных функций – вектор).

f_\text{Cybenko}(\mathbf{x}) = \mathbf{W}_2 \cdot \sigma(\mathbf{W}_1 \cdot \mathbf{x}+\mathbf{b}_\text{in})+\mathbf{b}_\text{out}

И в контексте KAN, теорему универсальной аппроксимации Цыбенко можно рассмотреть как теорему, которая определяет структуру KAN, которая обладает свойствами универсальной аппроксимации.

Также предлагаю рассмотреть случай ограниченной ширины и глубины нейронной сети, взяв к примеру теорему универсальной аппроксимации Н. Кулиева и В. Исмаилова из данной работы.

Котоорая гласит, что любая непрерывная функция, определённая на d-мерной области, может быть аппроксимирована нейронной сетью с двумя скрытыми слоями и сигмоидными и функциями активации:

f(x)_\text{Guliyev, Ismailov} = \sum_{p=1}^{2d+2} w_p \, \sigma\left( \sum_{q=1}^d w_{pq} \, \sigma\left( x_q + b_{pq} \right) + b_p \right)

Первый слой:

\mathbf{x}_1 = \sum_{q=1}^d \phi_{0,p,q}(x_q) \\[20pt]=   \begin{bmatrix}   w_{1,1}\sigma(w_{1,1}x_1 - b_{1,1}) & + & \dots & + & w_{1,d}\sigma(w_{1,d}x_d - b_{1,d}) \\   w_{2,1}\sigma(w_{2,1}x_1 - b_{2,1}) & + & \dots & + & w_{2,d}\sigma(w_{2,d}x_d - b_{2,d}) \\   \vdots &  & \ddots &  & \vdots \\   w_{2d+2,1}\sigma(w_{2d+2,1}x_1 - b_{2d+2,1}) & + & \dots & + & w_{2d+2,d}\sigma(w_{2d+2,d}x_d - b_{2d+2,d}) \\   \end{bmatrix}

Второй слой (выходной):

f(x)_\text{Guliyev, Ismailov} = \sum_{p=1}^{2d+2} \phi_{1,p}(x_p) \\[20pt] =   \begin{bmatrix}    w_{1}\sigma(\cdot) + \dots + w_{2d+2}\sigma(\cdot)     \end{bmatrix}   \cdot   \begin{bmatrix}    \sum_{q=1}^{d} w_{1,q}\sigma(w_{1,q}x_q - b_{1,q}) - b_{1} \\    \sum_{q=1}^{d} w_{2,q}\sigma(w_{2,q}x_q - b_{2,q}) - b_{2} \\    \vdots \\    \sum_{q=1}^{d} w_{2d+2,q}\sigma(w_{2d+2,q}x_q - b_{2d+2,q}) - b_{2d+2}    \end{bmatrix}

Собственно также, как и в случае с теоремой Цыбенко, здесь мы определяем структуру KAN с ограниченной шириной и глубиной, которая обладает универсальной аппроксимацией.

Ну и рассмотрим теоремы универсальной аппроксимации для случая произвольной ширины и глубины, которые упоминались в начале раздела про MLP, а именно теоремы Хорника и Лешно. Если рассматривать эти случаи в контексте KAN, то первый слой представляет собой аффинное преобразование, а последующие слои – преобразования, состоящие из масштабированных функций активации. При этом функция активации одинакова для всего слоя. В случае Хорника она должна быть непрерывной, ограниченной, неконстантой и неполиномиальной, а в случае теоремы Лешно допускаются кусочно-непрерывные функции и лишь локально ограниченные, а также не являющиеся полиномами почти всюду.

{\small f(\mathbf{x}) = \sum_{i_L=1}^{n_L} \phi_{L-1, i_L, i_{L-1}} \left(   \sum_{i_{L-1}=1}^{n_{L-1}} \phi_{L-2, i_{L-1}, i_{L-2}} \left(   \cdots \left(   \sum_{i_1=1}^{n_1} \phi_{1, i_2, i_1} \left(   \sum_{i_0=1}^{n_0} \phi_{0, i_1, i_0}(x_{i_0})  \right)   \right)   \cdots   \right)   \right)}

Где во входном слое фукнции \phi_{0,i_1,i_0}(x_{l,i}) = w_{ i_1, i_0}\cdot x_{i_0} + b_{ i_1, i_0},а во всех остальных – \phi_{l,i_{l+1},i_l}(x_{i_l}) = w_{l,i_{l+1}, i_l}\cdot f_{\text{activation, }l}(x_{i_l})+ b_{l, i_{l+1}, i_l}.

4.2 Теорема Колмогорова — Арнольда

Исследователи из MIT, предложив архитектуру B-spline KAN, вдохновились теоремой Колмогорова-Арнольда о представлении функций и расширили её. Однако в данном случае я предлагаю рассмотреть не архитектуру KAN через призму теоремы Колмогорова-Арнольда, а наоборот, что представляет собой теорема Колмогорова-Арнольда в контексте архитектуры KAN.

Андрей Колмогоров и Владимир Арнольд установили, что еслиfявляется функцией нескольких перменных, тоf может быть записана как конечная композиция непрерывных функций одной переменной и операций сложения:

f(\mathbf{x}) = f(x_1, \ldots, x_n) = \sum_{q=0}^{2n} \Phi_q \left( \sum_{p=1}^n \phi_{q,p}(x_p) \right),\\[20pt]\text{где } \phi_{q,p} : [0, 1] \to \mathbb{R} \text{ и } \Phi_q : \mathbb{R} \to \mathbb{R}.

И хотя это не теорема универсальной аппроксимации, так как она утверждает просто о способности разложения функции, в контексте архитектуры KAN теорему Колмогорова-Арнольда можно рассматривать как теорему, определяющую структуру сети KAN и образующую подмножество сетей с ограниченной шириной и глубиной.

Однако можно рассмотреть её вариант, который очевидно является элементом множества KAN и, в том числе, элементом подмножества KAN, в виде MLP. Мы уже разбирали его в предыдущем пункте, а именно – теорему универсальной аппроксимации Н. Кулиева и В. Исмаилова для двухслойного MLP. В качестве основы для доказательства они использовали теорему Колмогорова-Арнольда, по сути доказывая, что частный случай теоремы способен аппроксимировать любую непрерывную функцию на компактном множестве, с контролируемой ошибкой аппроксимации.

При этом интересно, что Теорема Колмогорова-Арнольда появилась задолго до известных архитектур 1990-х годов. Более того, она была опубликована в тот же год, когда Фрэнк Розенблатт предложил идею перцептрона – в 1957 году. И только спустя 67 лет исследователи из MIT, вдохновившись этой теоремой, предложили идею для создания KAN, который объединяет огромное количество вариантов сетей прямого распространения.

4.3 B-spline KAT и B-spline KAN

Рассмотрим для начала B-spline теорему Колмогорова-Арнольда (B-spline KAT). Мы уже обсуждали, что можем представить MLP в контексте KAN как нейронную сеть с первым слоем аффинного преобразования, где каждая функция имеет вид \phi(x)= w\cdot x+b,и последующими преобразованиями, где функция в общем виде \phi(x) = w\cdot f_{\text{activation}}(x)  +b, в которой f_{\text{activation}}(x)заранее определена для всего слоя.

Несмотря на то, что функции \phi(x) являются обучаемыми, при использовании популярных функций активации, к примеру ReLU, Mish, Swish (SiLU), GELU, функции по сути могут аппроксимировать с заданной точностью крайне маленький класс функций. Поэтому мы можем переопределить KAN, заменив все функции на произвольные B-сплайны, которые обладают куда большей возможностью аппроксимирования, что потенциально может дать больше гибкости модели, а также избавит от проблем выбора конкретной функции активации. Собственно, данный подход и предложили исследователи из MIT как вариант реализации KAN, а также выдвинули и доказали теоретическую часть для этого:

Теорема утверждает, что если целевая функция f(x) представлена как последовательность преобразований:

f(x) = (\Phi_{L-1} \circ \Phi_{L-2} \circ \dots \circ \Phi_1 \circ \Phi_0)x,

где каждое \Phi_{l,i_{l+1},i_l} – это непрерывно дифференцируемая функция(k+1)- раз.
То её можно эффективно аппроксимировать с помощью B-сплайнов.

При этом точность аппроксимации будет зависеть от параметра G,который представляет шаг сетки аппроксимации. Для любых m \in [0, k],ошибка аппроксимацииf(x)через B-сплайны в C^m- норме будет оцениваться rак:

\| f(x) - f_G(x) \|_{C^m} \leq C G^{-k+1+m}

где:

  • G – шаг сетки (чем меньше, тем точнее будет аппроксимация),

  • C – константа, зависящая от функции и её преобразований,

  • k – степень гладкости исходных функций \Phi,

  • m – порядок производной, до которого измеряется точность.

В контексте KAN данная теорема определяет структуру KAN и предоставляет аппроксимацию любой функции в пространстве непрерывных функций, обладающих непрерывными производными порядкаk+1на компактном множествеK– то есть вC^{k+1}(K).При этом множествоC^{k+1}(K)является подмножеством пространства непрерывных функцийC(K).

И хотя в оригинальном исследовании B-spline KAT предлагаются как альтернатива традиционным теоремам универсальной аппроксимации, её природа аналогична, так как она также утверждает, что существует такая последовательность преобразований \Phi_1, \Phi_2, \dots\ , и что при достаточном количестве нейронов мы можем аппроксимировать любую функцию из определённого множества функций с заданной точностью в пределах\epsilon. Таким образом, B-spline KAT можно также отнести к их числу!

Теперь перейдём к B-spline KAN. Вспомним, что в нем каждая из функций одной переменной задается как:

\phi_\text{BSKAN}(x)=w_b​f_\text{base}(x)+w_s{​f_\text{spline}}(x)​f_\text{base} = \text{silu}(x) = \frac{x}{1 + e^{-x}}f_\text{spline}(x) = \sum_i w_i B^k_i(x), \\[10pt] \text{где}\   B_i(x) \ \text{– B-сплайн степени k на одном слое}

Можно, конечно, интерпретировать, что мы берем модель из B-spline KAT, состоящую из композиции сумм B-сплайнов, добавив просто взвешенную функцию активации от входного вектора. Однако по сути мы берем MLP с\phi(x) = w\cdot f_{\text{activation}}(x)  +b,где вместо константной функции в виде смещенияf_\text{bias}(x) = b,мы используем B-сплайныf_\text{bias} = w_s{​f_{spline}}(x).Очевидно, что сплайны могут без проблем аппроксимировать на компактном множестве константную функцию, а значит, теоретически данная модель может сойтись либо к чистому MLP, либо к модификации MLP. Это, в свою очередь, означает, что B-spline KAN в реализации, которую предложили в официальном репозитории pykan, больше напоминает модификацию MLP, чем альтернативную модель, предложенную в B-spline KAT.

4.4 SVM и RBF нейронная сеть как частный случай KAN

Мы уже знаем, что SVM можно представить как нейронную сеть прямого распространения и в некоторых случаях как MLP. В данном случае с линейным ядром, как в общем виде, так и с его разложением, у нас будет, по сути, два слоя с линейным и аффинным преобразованием.

f_{\text{Linear SVM}}(\mathbf{x}) =\sum_{i=1}^{n} \alpha_i y_i K_\text{Linear}(\mathbf{x}_\text{train}, \mathbf{x}) + b  = \mathbf{W}_2(\mathbf{W}_1 \cdot \varphi_\text{linear}(\mathbf{x})) + b \\= \sum_{i=1}^{n} \alpha_i y_i (\mathbf{x}_\text{train}\cdot \mathbf{x}) + b

Если представить в формате KAN, то это будет выглядеть следующим образом:

f_\text{Linear SVM}(x) = \sum_{i_1=1}^{n_1} \phi_{1,i_1} \left( \sum_{i_0=1}^{n_0} \phi_{0,i_1,i_0}(x_{i_0}) \right),\\[10pt] \text{где} \\[10pt]  \phi_{0,i_1,i_0}(x_{i_0}) = x_{\text{train},i_1, i_0} \cdot x_{i_0}, \\[10pt]  \phi_{1,i_1}(x_{i_1}) = \alpha_{i_1} \cdot y_{i_1} \cdot x_{i_1} +b_{i_1}

С полиномиальным ядром всё в целом аналогично: если не использовать разложение с помощью функции \varphi_{\text{poly }n}​, то мы просто изменяем выходной слой и добавляем смещение во входной слой, производя аффинное преобразование, а не линейное.

f_\text{Poly SVM}(\mathbf{x}) = \sum_{i=1}^{n} \alpha_i y_i \left( \mathbf{x}_\text{train} \cdot \mathbf{x} + \mathbf{b}_\text{in} \right)^k + b_\text{out} =  \sum_{i_1=1}^{n_1} \phi_{1,i_1} \left( \sum_{i_0=1}^{n_0} \phi_{0,i_1,i_0}({x}_{i_0}) \right) , \\ \text{где}\\[10pt] \phi_{0,i_1,i_0}({x}_{i_0}) = {x}_{\text{train},i_1, i_0} \cdot {x}_{i_0} + b_{\text{in}, i_1}, \\[10pt] \phi_{1,i_1}(x_{i_1}) = \alpha_{i_1} \cdot y_{i_1} \cdot \left( x_{i_1} \right)^k + b_\text{out}.

А вот с разложением с помощью функции \varphi_{\text{poly }n​}всё посложнее. Мы знаем, что формула для SVM выглядит подобным образом (если\mathbf{b}_\text{in}состоит из нулей):

f_\text{Poly SVM}(\mathbf{x})_ = \mathbf{W}_2(\mathbf{W}_1 \cdot \varphi_{\text{poly }n}(\mathbf{x}))+ b_\text{out}

Возьмем простой и привычный пример для двумерных входных данных:

\varphi_{\text{poly }2}(\mathbf{x})  = \begin{bmatrix}x_1^2 \\x_2^2\\  \sqrt{2}x_1x_2\end{bmatrix}

Нам было бы очень интересно подать в виде:

\varphi_{\text{poly }2}(\mathbf{x}) =    \begin{bmatrix}   \phi_{1,1}(x_1) + \phi_{1,2}(x_2) \\   \phi_{2,1}(x_1) + \phi_{2,2}(x_2) \\   \phi_{3,1}(x_1) + \phi_{3,2}(x_2) \\   \end{bmatrix}

Однако последний элемент в виде\sqrt{2}x_1x_2всё портит. Безусловно, мы его можем разложить подобным образом:

\sqrt{2}x_1x_2  = \frac{\sqrt{2}}2((x_1 + x_2)^2 - x_1^2-x_2^2)

Но увы, данный вариант не будет работать для произвольного случая. К примеру, для \varphi_{\text{poly }n}полиномиального ядра третьей степени степени для двумерного входного вектора появляется член – \sqrt{3}x_1^2x_2,а его разложение будет выглядеть следующим образом:

\sqrt{3}x_1^2x_2 = \frac{\sqrt{3}}3((x_1 + x_2)^3 - 3x_1x_2^2 -x_1^3-x_2^3)

Как можно увидеть, тут не обойтись без функции двух переменных, которая также раскладывается и так бесконечное количество раз. Для произвольного случая все аналогично, и это можно вывести, используя мультиномиальную теорему.

Существует вариант разложить подобным образом:

c \cdot \prod_{i=1}^n x_i^{a_i} = c \cdot \exp\left(\sum_{i=1}^n a_i \ln|x_i|)\right), x_i>0

Но условие положительности, накладываемое логарифмом, мешает определить конечный знак данного произведения. Мы можем использовать знаковую функцию в виде комплексного члена. И тогда наше преобразование будет выглядеть следующим образом:

c \cdot \prod_{i=1}^n x_i^{a_i} = c \cdot \exp\left( \sum_{i=1}^n a_i \left( \ln|x_i| + i \arg(x_i) \right) \right), x_i \neq0, \\[20pt] arg(x_i) - \text{фаза } x_i​

Исходя из этого всего, можно увидеть, что преобразование с помощью функции \varphi_{\text{poly }n}(\mathbf{x}), что \varphi_\text{RBF}(\mathbf{x})можно разложить на два слоя KAN.

Теперь рассмотрим RBF-нейронную сеть с одним скрытым слоем и произвольным количеством нейронов в контексте KAN, но уже с использованием ядерного трюка, как это предложено в теореме универсальной аппроксимации (Дж. Парк, В. Сандберг), которую мы обсуждали в пункте 3.2 «RBF нейронная сеть». В контексте KAN её можно воспринимать как теорему, которая формирует KAN для приближения широкого класса функций. Аналогично обсуждаемым ранее теоремам, её структура будет выглядеть следующим образом:

f_\text{Park, Sandberg}(\mathbf{x}) = \sum_{i_1=1}^{n_1} \phi_{1,i_1} \left( \sum_{i_0=1}^{n_0} \phi_{0,i_1,i_0}(x_{i_0}) \right)  = \sum_{i=1}^{N} w_i K_\text{RBF}(\mathbf{x}, \mathbf{c}_i)
  1. Первый слой:

    \sum_{i_0=1}^{n_0} \phi_{0,i_1,i_0}(x_{i_0}) = \sum_{i_0=1}^{n_0} (x_{i_0} - c_{i_1,i_0})^2 \\[20pt] =  {\small\left[   \begin{matrix}   (x_{0,1} - c_{1,1})^2 & + & (x_{0,2} - c_{1,2})^2 & + & \dots & + & (x_{0,n_0} - c_{1,n_0})^2 \\   (x_{1,1} - c_{2,1})^2 & + & (x_{1,2} - c_{2,2})^2 & + & \dots & + & (x_{1,n_0} - c_{2,n_0})^2 \\   \vdots &  & \vdots &  & \ddots &  & \vdots \\   (x_{n_1,1} - c_{n_1,1})^2 & + & (x_{n_1,2} - c_{n_1,2})^2 & + & \dots & + & (x_{n_1,n_0} - c_{n_1,n_0})^2 \\   \end{matrix}   \right]}
  2. Второй слой:

    • Гауссово ядро:

      \sum_{i_1=1}^{n_1} \phi_{1, i_1}(x_{i_1}) = \sum_{i_1=1}^{n_1} w_{i_1} \cdot \exp\left(- \frac{(x_{i_1})^2}{\lambda_{i_1}}\right)  \\[20pt] = w_{1} \cdot \exp\left(- \frac{(x_{1})^2}{\lambda_{1}}\right) + w_{2} \cdot \exp\left(- \frac{(x_{2})^2}{\lambda_{2}}\right) + \dots + w_{n_1} \cdot \exp\left(- \frac{(x_{n_1})^2}{\lambda_{n_1}}\right)
    • Обратное квадратичное ядро (Inverse Quadratic):

      \sum_{i_1=1}^{n_1} \phi_{1,i_1}(x_{i_1}) = \sum_{i_1=1}^{n_1} w_{i,i_1} \cdot \frac{1}{1 + \left(\lambda_{i_1} \cdot x_{i_1}\right)^2} \\[20pt] = w_{1} \cdot \frac{1}{1 + \left(\lambda_{1} \cdot x_{1}\right)^2} + w_{2} \cdot \frac{1}{1 + \left(\lambda_{2} \cdot x_{2}\right)^2} + \cdots + w_{n_1} \cdot \frac{1}{1 + \left(\lambda_{n_1} \cdot x_{n_1}\right)^2}
    • Обратное мультиквадратичное ядро (Inverse Multiquadric):

      \sum_{i_1=1}^{n_1} \phi_{1, i_1}(x_{i_1}) = \sum_{i_1=1}^{n_1} w_{i_1} \cdot \frac{1}{\sqrt{1 + \lambda_{i_1} \cdot (x_{i_1})^2}} \\[20pt] = w_{1} \cdot \frac{1}{\sqrt{1 + \lambda_{1} \cdot (x_{1})^2}} + w_{2} \cdot \frac{1}{\sqrt{1 + \lambda_{2} \cdot (x_{2})^2}} + \dots + w_{n_1} \cdot \frac{1}{\sqrt{1 + \lambda_{n_1} \cdot (x_{n_1})^2}}

Для теоремы универсальной аппроксимации RBF-нейронной сети с произвольным количеством скрытых слоев и нейронов, которую я доказывал в пункте 3.2.1 «Многослойная RBF нейронная сеть», всё аналогично. Она также формирует KAN и выглядит всё так:

  • Для l = 0

    \sum_{i_0=1}^{n_0} \phi_{0,i_1,i_0}(x_{i_0}) = \sum_{i_0=1}^{n_0} (x_{i_0} - c_{i_1,i_0})^2 \\[30pt] = {\small \left[  \begin{matrix}  (x_{0,1} - c_{1,1})^2 & + & (x_{0,2} - c_{1,2})^2 & + & \dots & + & (x_{0,n_0} - c_{1,n_0})^2 \\  (x_{1,1} - c_{2,1})^2 & + & (x_{1,2} - c_{2,2})^2 & + & \dots & + & (x_{1,n_0} - c_{2,n_0})^2 \\  \vdots &  & \vdots &  & \ddots &  & \vdots \\  (x_{n_1,1} - c_{n_1,1})^2 & + & (x_{n_1,2} - c_{n_1,2})^2 & + & \dots & + & (x_{n_1,n_0} - c_{n_1,n_0})^2 \\  \end{matrix}  \right]}\\[40pt]
  • Для 1\leq l\leq L-2

    \sum_{i_l=1}^{n_l} \phi_{i_l,i_{l+1},i_l}(x_{i_l}) = \sum_{i_l=1}^{n_l} (c_{i_{l+1}, i_l} - \exp\left(- \frac{(x_{i_l})^2}{\lambda_{i_{l+1}}}\right))^2 \\ = \left[  \begin{matrix}     (c_{1,1} - \exp\left(- \frac{(x_{1,1})^2}{\lambda_1}\right))^2 + \dots + (c_{1, n_l} - \exp\left(- \frac{(x_{1, n_l})^2}{\lambda_1}\right))^2 \\     (c_{2,1} - \exp\left(- \frac{(x_{2,1})^2}{\lambda_2}\right))^2 + \dots + (c_{2, n_l} - \exp\left(- \frac{(x_{2, n_l})^2}{\lambda_2}\right))^2 \\       \vdots \\     (c_{n_{l+1},1} - \exp\left(- \frac{(x_{n_{l+1},1})^2}{\lambda_{n_{l+1}}}\right))^2 + \dots + (c_{n_{l+1}, n_l} - \exp\left(- \frac{(x_{n_{l+1}, n_l})^2}{\lambda_{n_{l+1}}}\right))^2 \\     \end{matrix}   \right]\\[60pt]
  • Для l ={L-1}

    \sum_{i_{L-1}=1}^{n_{L-1}} \phi_{L-1, i_{L}, i_{L-1}}(x_{i_{L-1}}) = \sum_{i_{L-1}=1}^{n_{L-1}} w_{i_{L}, i_{L-1}} \cdot \exp\left(- \frac{(x_{i_{L-1}})^2}{\lambda_{i_{L-1}}}\right)  \\[20pt]  = \left[   \begin{matrix}     w_{1,1} \cdot \exp\left(- \frac{(x_{1})^2}{\lambda_{1}}\right) + w_{1,2} \cdot \exp\left(- \frac{(x_{2})^2}{\lambda_{2}}\right) + \dots + w_{1,n_{L-1}} \cdot \exp\left(- \frac{(x_{n_{L-1}})^2}{\lambda_{n_{L-1}}}\right) \\   \vdots   \end{matrix}   \right]\\[30pt]

4.4.1 Многослойная RBF нейронная сеть (MRBFN) vs FastKAN

Вскоре после выхода исследования про KAN была выпущена модель, которая вместо использования B-спланов использует Гауссово ядро. Сама модель доступна на GitHub, а также её описание на arXiv.

Цель данного сравнения – показать, что, несмотря на то, что с первого взгляда мы получаем KAN с RBF-ядрами, который быстрее B-spline KAN и по точности ± такой же, и как бы всё отлично, но у нас уже существует подобный KAN в виде многослойной RBF-нейронной сети, который ничем не хуже.

Архитектура FastKAN выглядит следующим образом:

f_\text{FastKAN}(\mathbf{x}) = {\small  \sum_{i_L=1}^{n_L} \phi_{L-1, i_L, i_{L-1}} \left(   \sum_{i_{L-1}=1}^{n_{L-1}} \phi_{L-2, i_{L-1}, i_{L-2}} \left(   \cdots \left(   \sum_{i_1=1}^{n_1} \phi_{1, i_2, i_1} \left(   \sum_{i_0=1}^{n_0} \phi_{0, i_1, i_0}(x_{i_0})  \right)   \right)    \right)   \right)}\\[20pt]где \\[10pt] \phi_{l,i_{l+1},i_l}(x_{l,i_l}). = K_\text{RBF}(c_{i_{l+1},i_l}, x_{l, i_l})
  • Для {0\leq l\leq L-2}

    \sum_{i_{l}=1}^{n_{l}} \phi_{l, i_{l+1}, i_{l}}(x_{i_{l}}) = \sum_{i_{l}=1}^{n_{l}} K_\text{RBF}(c_{i_{l+1}, i_{l}}, x_{i_{l}}) \\[20pt] =  \left[    \begin{matrix}    K_\text{RBF}(c_{1,1}, x_{1}) + K_\text{RBF}(c_{1,2}, x_{2}) + \dots + K_\text{RBF}(c_{1, n_{l}}, x_{n_{l}}) \\    K_\text{RBF}(c_{2,1}, x_{1}) + K_\text{RBF}(c_{2,2}, x_{2}) + \dots + K_\text{RBF}(c_{2, n_{l}}, x_{n_{l}}) \\    \vdots \\    K_\text{RBF}(c_{n_{l+1},1}, x_{1}) + K_\text{RBF}(c_{n_{l+1},2}, x_{2}) + \dots + K_\text{RBF}(c_{n_{l+1}, n_{l}}, x_{n_{l}}) \\    \end{matrix}    \right] \\[40pt]
  • Для l={L-1}

    \sum_{i_{L-1}=1}^{n_{L-1}} \phi_{L-1, i_{L}, i_{L-1}}(x_{i_{L-1}}) = \sum_{i_{L-2}=1}^{n_{L-2}} K_\text{RBF}(c_{i_{L}, i_{L-1}}, x_{i_{L-1}}) \\[20pt] =  \left[    \begin{matrix}    K_\text{RBF}(c_{1,1}, x_{1}) + K_\text{RBF}(c_{1,2}, x_{2}) + \dots + K_\text{RBF}(c_{1, n_{L-1}}, x_{n_{L-1}}) \\    \vdots    \end{matrix}    \right]\\[10pt]

Из пункта 3.2 мы знаем, что преобразование с помощью слоя RBF-нейронной сети (кроме выходного) выглядит следующим образом:

\mathbf{x}_{\text{output}} =    \begin{bmatrix}    K_{\text{RBF}}(\mathbf{x}_{\text{input}}, \mathbf{c}_1) \\    K_{\text{RBF}}(\mathbf{x}_{\text{input}}, \mathbf{c}_2) \\    K_{\text{RBF}}(\mathbf{x}_{\text{input}}, \mathbf{c}_3) \\    \vdots \\    K_{\text{RBF}}(\mathbf{x}_{\text{input}}, \mathbf{c}_n)    \end{bmatrix}

То есть разница в том, что в случае RBF-нейронной сети мы применяем Гауссово ядро между всем входным вектором и вектором веса, когда в FastKAN мы применяем между каждым элементом входного и вектора веса, а потом суммируем.

Для выполнения поставленной задачи нужно выполнить, по сути, данное сравнение в плане скорости и сложности преобразования.

\begin{bmatrix}    K_{\text{RBF}}(\mathbf{x}_{\text{input}}, \mathbf{c}_1) \\    K_{\text{RBF}}(\mathbf{x}_{\text{input}}, \mathbf{c}_2) \\    K_{\text{RBF}}(\mathbf{x}_{\text{input}}, \mathbf{c}_3) \\    \vdots \\    K_{\text{RBF}}(\mathbf{x}_{\text{input}}, \mathbf{c}_n)    \end{bmatrix}   \quad \text{vs} \quad   \begin{bmatrix}    \sum_{q=1}^{M} K_{\text{RBF}}(\mathbf{x}_{\text{input}, q}, \mathbf{c}_{1, q}) \\    \sum_{q=1}^{M} K_{\text{RBF}}(\mathbf{x}_{\text{input}, q}, \mathbf{c}_{2, q}) \\    \sum_{q=1}^{M} K_{\text{RBF}}(\mathbf{x}_{\text{input}, q}, \mathbf{c}_{3, q}) \\    \vdots \\    \sum_{q=1}^{M} K_{\text{RBF}}(\mathbf{x}_{\text{input}, q}, \mathbf{c}_{n, q})    \end{bmatrix}

По сути, нам достаточно сравнить преобразование, которое приводит в обоих случаях к элементу результирующего вектора. Это без проблем обобщается на весь слой и всю модель, то есть:

K_\text{RBF}(\mathbf{x}, \mathbf{c}) \quad \text{vs} \quad \sum_{q=1}^{M} K_\text{RBF}(\mathbf{x}_q, \mathbf{c}_q) \\\\ \varphi_{\text{RBF}}(\mathbf{x})^\top \cdot \varphi_{\text{RBF}}(\mathbf{c}) \quad \text{vs} \quad \sum_{q=1}^{M} \varphi_{\text{RBF}}(\mathbf{x}_q)^\top \cdot \varphi_{\text{RBF}}(\mathbf{c}_q)

Функции\varphi_{\text{RBF}}для входных векторов размерностью больше двух в итоге дадут идентичный логический вывод из-за свойств функции. Поэтому рассмотрим на привычных двумерных векторах\mathbf{x} = [x_1, x_2]и \mathbf{с} = [с_1, с_2].Одномерный случай мы проанализируем после. Также в качестве примера ядра я буду использовать Гауссово. Для обратного квадратического и обратного мультиквадратического вывод идентичен, или для ядер, которые обладают теми же свойствами. Также сумма мультииндексов ограниченаM =2,и для удобства\lambda = 2.

Начнем с:

\sum_{q=1}^{m} K_\text{Gaussian}(x_q, с_q)\varphi_\text{gaussian}(x_1) = \exp\left( -\frac{1}{2} x_1^2 \right) \left[ 1, x_1, \frac{x_1^2}{\sqrt{2}}, \dots \right]\varphi_\text{gaussian}(x_2) = \exp\left( -\frac{1}{2} x_2^2 \right) \left[ 1, x_2, \frac{x_2^2}{\sqrt{2}}, \dots \right]\varphi_\text{gaussian}(c_1) = \exp\left( -\frac{1}{2} c_1^2 \right) \left[ 1, c_1, \frac{c_1^2}{\sqrt{2}}, \dots \right]\varphi_\text{gaussian}(c_1) = \exp\left( -\frac{1}{2} c_1^2 \right) \left[ 1, c_1, \frac{c_1^2}{\sqrt{2}}, \dots \right]\sum_{q=1}^{2} K_{\text{Gaussian}}(x_q, c_q) = \sum_{q=1}^{2} \varphi_{\text{gaussian}}(x_q)^\top \cdot \varphi_{\text{gaussian}}(c_q) \\=\exp\left( -\frac{1}{2} (x_1^2 + c_1^2) \right) \left( 1 + x_1 c_1 + \frac{x_1^2 c_1^2}{2} + \dots \right) \\+\exp\left( -\frac{1}{2} (x_2^2 + c_2^2) \right) \left( 1 + x_2 c_2 + \frac{x_2^2 c_2^2}{2} + \dots \right)

И теперь перейдем к K_\text{Gaussian}(\mathbf{x}, \mathbf{с})

\varphi_\text{gaussian}(\mathbf{x}) = \exp\left( -\frac{1}{2} (x_1^2 + x_2^2) \right) \left[ 1, x_1, x_2, \frac{x_1^2}{\sqrt{2}}, x_1 x_2, \frac{x_2^2}{\sqrt{2}}, \dots \right]\varphi_\text{gaussian}(\mathbf{c}) = \exp\left( -\frac{1}{2} (c_1^2 + c_2^2) \right) \left[ 1, c_1, c_2, \frac{c_1^2}{\sqrt{2}}, c_1 c_2, \frac{c_2^2}{\sqrt{2}}, \dots \right]K_\text{Gaussian}(\mathbf{x}, \mathbf{c}) = \varphi_\text{gaussian}(\mathbf{x})^\top \cdot \varphi_\text{gaussian}(\mathbf{c}) \\[20pt]=\textstyle \exp\left( -\frac{1}{2} (x_1^2 + x_2^2 + c_1^2 + c_2^2) \right) \left( 1 + x_1 c_1 + x_2 c_2 + \frac{x_1^2 c_1^2}{2} + x_1 x_2 c_1 c_2 + \frac{x_2^2 c_2^2}{2} + \dots \right)

Как мы можем заметить, разница в том, что для вычисления ядра между векторами у нас экспоненциальный множитель учитывает все элементы векторов, а также появляются смешанные члены вродеx_1 x_2 с_1 с_2.

Поэтому, выразим K_\text{Gaussian}(\mathbf{x}, \mathbf{с}) с помощью:

\sum_{q=1}^{m} K_\text{Gaussian}(x_q, с_q)K_\text{Gaussian}(\mathbf{x}, \mathbf{c}) = \varphi_\text{gaussian}(\mathbf{x})^\top \cdot \varphi_\text{gaussian}(\mathbf{c}) \\ =\exp\left( -\frac{1}{2} \sum_{q=1}^{M} (x_q^2 + c_q^2) \right) \cdot \left(\sum_{q=1}^{M} \varphi_{\text{Gaussian}}\left(\frac{x_q}{\exp(-0.5 x_q^2)}\right) \cdot \varphi_{\text{Gaussian}}\left(\frac{c_q}{\exp(-0.5 c_q^2)}\right)+ \\+ \sum_{\text{(смешанные члены)}} \right)

Как мы можем увидеть, каждый элемент преобразования\varphi_{\text{gaussian}}(\mathbf{x})^\top \cdot \varphi_{\text{gaussian}}(\mathbf{с}) учитывает не просто экспоненту от суммы конкретных квадратов двух элементов, а от всех элементов двух векторов. Также мы учитываем совместные члены, которые учитывают множитель экспоненты от всех членов двух векторов. В совокупности это даёт очевидно больше возможностей для учета взаимосвязи между входными признаками, а значит, потенциально более высокую точность в задачах.

В контексте KAN в случае с RBF-нейронной сетью мы по сути имеем дополнительные слои при представлении сети с использованием функции \varphi_\text{RBF}.Как мы обсуждали, можно разложить, используя экспоненту от суммы логарифмов с контролем знака, используя фазу данного числа в комплексной плоскости, что даёт дополнительный слой, в то время как в FastKAN подобных дополнительных слоев нет.

Теперь перейдём к скорости. Довольно очевидно, что для входных векторов с размерностью больше или равной двум RBF-нейронная сеть с использованием ядерного трюка будет всегда быстрее, чем FastKAN.

В случае с одномерным входным вектором RBF-нейронная сеть и FastKAN равны и по преобразованию, и по скорости.

То есть в итоге мы имеем более быструю и потенциально более точную модель.

4.5 Проклятье и благословение размерности

При обсуждении проклятия размерности часто игнорируют благословение размерности, считая его учтённым по умолчанию, что ошибочно. Эти явления являются двумя сторонами одной медали: увеличение размерности может как приносить преимущества, так и создавать недостатки в зависимости от контекста и подхода к решению задачи.

Проклятие размерности – термин, описывающий различные проблемы, которые возникают при анализе и обработке данных в многомерных пространствах, но не проявляются в пространствах с малым количеством измерений, например в привычном трёхмерном пространстве. Этот термин был введён Ричардом Беллманом в 1957 году.

Благословение размерности – термин, который, вопреки ожиданиям о проклятии размерности, указывает на то, что в высокоразмерных пространствах могут возникать и положительные эффекты, позволяющие решать задачи проще, чем ожидалось. Он был введён в конце 1990-х годов Дэвидом Донохо.

Суть проклятия размерности в том, что при увеличении числа измерений объём пространства растёт экспоненциально быстро, а имеющиеся данные становятся «разреженными», то есть их оказывается слишком мало для надёжного анализа. Это особенно важно, когда количество данных невелико относительно внутренней размерности самих данных. При этом также может экспоненциально расти сложность модели при увеличении количества измерений входных данных.

Также часто пространство начинает демонстрировать явление концентрации меры: величины, зависящие от случайных переменных, в высоких размерностях концентрируются вокруг своих средних значений, и вероятность больших отклонений стремится к нулю. К примеру, так ведут себя нормы векторов, скалярные произведения, углы между векторами, эвклидовы расстояния и т. п.

Однако все эти выводы в основном опираются на синтетические сценарии. На практике же нередко преобладает благословение размерности.

Суть в том, что машинное обучение связано с отнесением экземпляров к их источникам, а классовые метки символизируют разные процессы. Аргумент о проклятии исходит из предположения, что все данные приходят из одного процесса. Если бы это было так, машинное обучение теряло бы смысл. Однако, если учесть несколько процессов, потеря контраста может стать полезной, так как помогает находить ближайший и наиболее связанный экземпляр, делая расстояния более значимыми в высоких размерностях. На практике вектора часто подвержены одинаковым внутриклассовым корреляциям между признаками внутри одного и того же класса. Это приводит к тому, что эффективная размерность одного класса оказывается ниже, чем всё пространство данных, а значит, позволяет моделям машинного обучения разделять классы более эффективно.

Теперь перейдём к MLP. Стереотип о том, что эти сети подвержены проклятию размерности, выглядит чрезмерно громким, так как они (как и многие другие модели машинного обучения) в одних условиях могут страдать от проклятия размерности, а в других – нет. Всё зависит от конкретных обстоятельств, в которых мы их рассматриваем. В контексте нейронных сетей, и в частности MLP, обычно говорят об экспоненциальном росте сложности самой модели при увеличении входного пространства признаков и определённой желаемой точности.

К примеру, есть исследование Эндрю Р. Баррона «Оценки универсальной аппроксимации для суперпозиций сигмоидной функции», в котором анализируется MLP-архитектура, предложенная Цыбенко. Баррон доказывает, что при сходимости данного интеграла (нормы Баррона):

C_f = \int_{\mathbb{R}^d} |\omega| |\hat{f}(\omega)| \, d\omega<\infty

где\hat{f} – это преобразование Фурье целевой функцииf,количество нейронов, необходимое для достижения заданной точности аппроксимации, растёт полиномиально, а не экспоненциально с увеличением размерности входных данных. То есть, если преобразование Фурье целевой функции не содержит больших высокочастотных элементов и убывает достаточно быстро, то проклятие размерности можно считать разрушенным.

Всё аналогично и для B-spline KAT: предложенная модель также разрушает проклятие размерности, но лишь при соблюдении ряда условий. А именно, если целевую функциюfможно разложить на блоки\Phi,обладающие непрерывными производными порядкаk+1,и при этом константаCв ошибке аппроксимации не растёт экспоненциально с увеличением размерности входных данных, то тогда проклятие размерности можно считать разрушенным.

Кстати, на MathOverflow есть обсуждение, в котором ставят под сомнение точность утверждения о разрушении проклятия размерности и просят уточнить условия.

В целом же это одна из проблем множества статей, рассматривающих B-spline KAN, поскольку некорректно утверждать, что MLP якобы подвержен проклятию размерности, а KAN – нет. На деле всё определяется конкретными предположениями и условиями применения той или иной модели.

4.6 Итог и обобщение информации с помощью множеств

В этой статье одной из целей, которую я ставил, было показать, что многие известные архитектуры сетей прямого распространения можно объединить и рассматривать через призму KAN, даже те, которые с первого взгляда не являются ими. Это дает возможность лучше понять, в чем они схожи и чем отличаются.

Также предлагаю теперь посмотреть как то, что мы обсуждали, будет выглядеть в контексте множеств. Однако сразу предупреждаю, что данная визуализация не охватывает все варианты и подмножества которые мы обсуждали, а для удобства восприятия включены только основные. В качестве примера пересечения множеств можно рассматривать комбинацию двух вариантов.

5233de4fe464a5ad7cde36132fbe8bb0.png

Список еще некоторых вариантов KAN можно найти в данном репозитории на GitHub.


И напоследок хотел сказать, что в планах так же написаь статью, где я покажу 2 новых варианта KAN. На данный момент в интернете подобные реализации мне еще не встречались.

Так что будет интересно!

Источники

Approximation by superpositions of a sigmoidal function. Mathematics of Control, Signals, and Systems. Сybenko, G. (1989)

Lower bounds for approximation by MLP neural networks. Maiorov, Vitaly; Pinkus, Allan (April 1999)

Multilayer feedforward networks are universal approximators. Hornik, Kurt; Stinchcombe, Maxwell; White, Halbert (January 1989)

Multilayer feedforward networks with a nonpolynomial activation function can approximate any function. Leshno, Moshe; Lin, Vladimir Ya.; Pinkus, Allan; Schocken, Shimon (March 1992)

Support-Vector Networks. Cortes, Corinna; Vapnik, Vladimir (1995)

Mercer's theorem. J. Mercer (May 1909)

Introduction to Machine Learning: Class Notes 67577. Shashua, Amnon (2009)

Universal Approximation Using Radial-Basis-Function Networks. Park, J.; I. W. Sandberg (Summer 1991)

KAN: Kolmogorov-Arnold Networks. Ziming Liu et al

Kolmogorov-Arnold Networks are Radial Basis Function Networks. Ziyao Li

When is "Nearest Neighbor" Meaningful? Beyer, K.; Goldstein, J.; Ramakrishnan, R.; Shaft, U (1999)

A survey on unsupervised outlier detection in high-dimensional numerical data. Zimek, A.; Schubert, E.; Kriegel, H.P. (2012)

Shell Theory: A Statistical Model of Reality. Lin, Wen-Yan; Liu, Siying; Ren, Changhao; Cheung, Ngai-Man; Li, Hongdong; Matsushita, Yasuyuki (2021)

Utilizing Geometric Anomalies of High Dimension: When Complexity Makes Computation Easier. Kainen, Paul C. (1997)

Blessing of dimensionality: mathematical foundations of the statistical physics of data. Gorban, Alexander N.; Tyukin, Ivan Y. (2018)

Universal Approximation Bounds for Superpositions of a Sigmoidal Function.
Andrew R. Barron

Источник

  • 22.06.26 21:51 kimberlyhebert786

    I invested in bitcoin trading After losing $78.4 USDT) linked to a romance fraud scam worth of cryptocurrency through an online investment platform and later discovered it was a scam. After extensive research for recovery options, I contacted CAPITAL CRYPTO RECOVER based on positive client reviews and recommendations. Their professional security team guided me through the recovery process using advanced technology, and I was able to recover my lost cryptocurrency successfully. I am truly grateful for their support and assistance during such a difficult experience. I will advise you to contact CAPITAL CRYPTO RECOVER helped me recover my funds. For anyone facing similar issues, Website: https://recovercapital.wixsite.com/capital-crypto-rec-1 Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text Number: +1 (336) 390-6684

  • 24.06.26 01:25 Fraddy Pual

    I never thought it would happen to me—but I lost $256,100 in Bitcoin through a shady investment deal. I was shattered, panicked, and convinced my savings were gone forever. Just when I was about to give up, I stumbled upon reviews for FUNDSRETRIEVER, a cyber recovery team with a solid reputation. I decided to give it a shot, and to my absolute shock, they recovered every single cent in record time. Working with them was a lifesaver. If you've been tricked by fake investment platforms, don't lose hope—FUNDSRETRIEVER can help. Contact them here: Email: [email protected] | WhatsApp: +1603512144 8| Telegram: @Fundsretriever

  • 24.06.26 01:27 Fraddy Pual

    I never thought it would happen to me—but I lost $256,100 in Bitcoin through a shady investment deal. I was shattered, panicked, and convinced my savings were gone forever. Just when I was about to give up, I stumbled upon reviews for FUNDSRETRIEVER, a cyber recovery team with a solid reputation. I decided to give it a shot, and to my absolute shock, they recovered every single cent in record time. Working with them was a lifesaver. If you've been tricked by fake investment platforms, don't lose hope—FUNDSRETRIEVER can help. Contact them here: Email: [email protected] | WhatsApp: +16035121448 | Telegram: @Fundsretriever

  • 24.06.26 01:28 Fraddy Pual

    I never thought it would happen to me—but I lost $256,100 in Bitcoin through a shady investment deal. I was shattered, panicked, and convinced my savings were gone forever. Just when I was about to give up, I stumbled upon reviews for FUNDSRETRIEVER, a cyber recovery team with a solid reputation. I decided to give it a shot, and to my absolute shock, they recovered every single cent in record time. Working with them was a lifesaver. If you've been tricked by fake investment platforms, don't lose hope—FUNDSRETRIEVER can help. Contact them here: Email: [email protected] | WhatsApp: +16035121448 | Telegram: @Fundsretriever.

  • 24.06.26 01:58 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text: +1 (336) 390-6684 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 24.06.26 01:58 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text: +1 (336) 390-6684 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 24.06.26 14:16 Universina da Mota

    Becoming a victim of an investment scam is never anyone's intention it often happens because fraudsters exploit trust and a lack of awareness. I would like to express my sincere gratitude to the dedicated team at ResQpro for their professionalism and commitment to helping victims of online investment fraud. Their efforts in assisting individuals with the recovery of stolen assets and holding scammers accountable are truly commendable. If you need assistance or would like to learn more, you can contact them through: Email: [email protected] Alternative Email: [email protected] Telegram: @ResQprofirm WhatsApp: +1 (985) 296-9146

  • 24.06.26 14:21 Elizabeth Thompson

    If you believe you have been the victim of an investment scam, it is important to act promptly and gather all relevant information. Keep records of transaction receipts, wallet addresses, communication logs, account details, and any other evidence related to the incident. Providing accurate documentation can help investigators, financial institutions, legal professionals, or recovery specialists review your case and determine what options may be available. Be cautious of anyone who guarantees the recovery of lost funds or requests large upfront payments. For additional information, you may contact: Email: [email protected] Telegram: @ResQprofirm WhatsApp: +1 (985) 296-9146

  • 24.06.26 15:33 Júlia Castro

    If you have fallen victim to an investment scam, it is important to act quickly and gather all available evidence related to the incident. This may include transaction records, wallet addresses, screenshots of conversations, emails, account details, and any information connected to the individuals or entities involved. Having complete documentation can help professionals assess your situation and explore possible recovery options. Always exercise caution when seeking assistance and carefully verify the credentials of any service provider before proceeding. For further information, you may contact: Email: [email protected] Telegram: @ResQprofirm WhatsApp: +1 (985) 296-9146

  • 24.06.26 22:01 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text: +1 (336) 390-6684 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 24.06.26 22:01 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text: +1 (336) 390-6684 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 25.06.26 21:13 Emilie Safi

    A fraudulent investment scheme operated by BTCMining.limited functions as a fake return scam. In this setup, scammers lure victims with false promises of high returns. Through manipulative tactics, they gain individuals' trust and convince them to invest, ultimately leading to financial loss. If you have ever faced a cyber threat or fallen victim to an online crypto scam and need to reach the authorities, I recommend contacting [email protected], [email protected], WhatsApp +19852969146, telegram @resqprofirm. They are a legitimate team that helps victims of online crypto scams using advanced tools.

  • 25.06.26 21:25 Emilie Safi

    So I ended up losing $38,000 to this platform. At first, they kept asking me to put in more money so I could get into my portfolio. I did that, but then they wouldn’t let me withdraw anything—just kept asking for more deposits. It got way too suspicious, so I stopped. I found this company called ResQProfirm on Google and told them what happened. They got in touch, asked me to walk them through everything, and I gave them all the proof I had. They did an amazing job tracking down my money and getting it back. Big thanks to them at [email protected] and on WhatsApp at +19852969146. Please be careful out there and always research before investing.

  • 26.06.26 01:04 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text: +1 (336) 390-6684 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 26.06.26 01:04 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text: +1 (336) 390-6684 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 26.06.26 02:48 Miriam Rocha

    I trusted this platform with $120,000 of my hard-earned money. Then they started asking for more deposits just so I could access my own portfolio. I paid, but every withdrawal request was denied. They kept pushing for more money. I finally stopped it just felt wrong. Desperate, I found ResQProfirm on Google. They didn't just hear me out; they truly listened. I shared all my proof, and they launched an investigation. Thanks to their hard work, they tracked and returned my funds. From the bottom of my heart, thank you to [email protected] and their WhatsApp +19852969146. Please stay safe and always verify a platform before investing

  • 26.06.26 02:52 Miško Bakić

    I got my $232,000 refund thanks to [email protected] and WhatsApp +19852969146. Highly recommended for anyone in a similar situation.

  • 26.06.26 02:56 Asunción Herrera

    A recovery of $48,330 was facilitated by [email protected]. Individuals who have experienced financial fraud may consider contacting this service.

  • 26.06.26 15:05 Riley Stephens

    If withdrawals keep getting denied, stay calm. I went through the same, and this firm helped me recover everything. Their assistance was outstanding. Contact: [ResQProFirm @Gmail|•|com], Telegram: ResQprofirm, WhatsApp: <+198> <5296> <9146>.

  • 26.06.26 15:09 Antonio Riley

    Withdrawal troubles shouldn’t stress you out. I faced a similar problem, and this firm stepped in and recovered my funds. Their support truly mattered. Contact them: [[email protected], ResQprofirm @aol.com], Telegram: ResQprofirm, WhatsApp: +19852969146.

  • 28.06.26 00:37 kimberlyhebertt673

    I invested in bitcoin trading After losing $78.4 USDT) linked to a romance fraud scam worth of cryptocurrency through an online investment platform and later discovered it was a scam. After extensive research for recovery options, I contacted CAPITAL CRYPTO RECOVER based on positive client reviews and recommendations. Their professional security team guided me through the recovery process using advanced technology, and I was able to recover my lost cryptocurrency successfully. I am truly grateful for their support and assistance during such a difficult experience. I will advise you to contact CAPITAL CRYPTO RECOVER helped me recover my funds. For anyone facing similar issues, Website: https://recovercapital.wixsite.com/capital-crypto-rec-1 Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text Number: +1 (336) 390-6684

  • 28.06.26 00:37 kimberlyhebertt673

    I invested in bitcoin trading After losing $78.4 USDT) linked to a romance fraud scam worth of cryptocurrency through an online investment platform and later discovered it was a scam. After extensive research for recovery options, I contacted CAPITAL CRYPTO RECOVER based on positive client reviews and recommendations. Their professional security team guided me through the recovery process using advanced technology, and I was able to recover my lost cryptocurrency successfully. I am truly grateful for their support and assistance during such a difficult experience. I will advise you to contact CAPITAL CRYPTO RECOVER helped me recover my funds. For anyone facing similar issues, Website: https://recovercapital.wixsite.com/capital-crypto-rec-1 Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text Number: +1 (336) 390-6684

  • 29.06.26 11:57 Lisadonato0726

    For 43 years, I struggled with bad credit due to my own poor decisions, and my credit score was around 490. When my girlfriend and I decided to buy a house, a mortgage broker informed us that it would be impossible to secure a mortgage with my credit score. As a result, she referred me to a company called HACK MAVENS CREDIT SPECIALIST, assuring me of their professionalism and ability to assist with credit improvement. Upon contacting them, I was impressed by their professionalism and they assured me that they could help. In less than 6 days, my credit score skyrocketed to 785, and they also successfully resolved issues in my credit report, including the bankruptcy. I am incredibly satisfied with their service and would highly recommend HACK MAVENS CREDIT SPECIALIST for reliable credit repairs. You can reach them at H A C K M A V E N S 5 [AT] G M A I L [DOT] COM or at [+] [1] [2 0 9] [4 1 7] – [1 9 5 7]. Thanks to their help, my girlfriend and I are now proud homeowners.

  • 29.06.26 22:37 riley777

    Back in 2025, I watched my life savings vanish. A thief took every cent. I felt desperate and went looking for a way to get it back. I found a guy here who said he was an expert haha. He talked about special software that could find my missing cash. I trusted him. That was a big mistake. He was just another scammer. I paid him a software fee and then he just stopped answering my texts and ran off with my money too. I felt so ashamed that I kept quiet about it for months. It is hard to admit you got fooled twice. Later on, I found a real pro. she did not use a fancy sales pitch. she just looked at the trans screenshots and followed the path the money took. she worked fast and got my funds back into my account. Having that money back changed everything. I can sleep again. her info; [email protected]. Call/chatroom on Whtasapp/ +44 7476618364.

  • 30.06.26 15:08 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 30.06.26 15:08 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 02.07.26 01:22 Lieneke Bonnema

    I highly recommend ResQprofirm for their professional asset recovery services of my $120,000 scammed funds. Their expertise, professionalism, and commitment to achieving results make them a reliable choice for anyone seeking dependable recovery assistance. [email protected], WhatsApp +19852969146, telegram @resqprofirm

  • 02.07.26 01:26 Clara Morin

    I want to extend my deepest appreciation for showing that circumstances do not define one’s potential for greatness. Your support has been a major source of inspiration during my trading journey, and I am sincerely grateful for your insight and mentorship. Thank you so much. [email protected], WhatsApp +19852969146, telegram ResQprofirm

  • 02.07.26 01:31 Robin Hale

    I sincerely want to thank you for demonstrating that anyone can rise above their circumstances and achieve success. Your constant support has been incredibly inspiring during my trading journey, and your wisdom and advice mean so much to me. I appreciate you deeply. [email protected], WhatsApp +19852969146, telegram Resqprofirm

  • 04.07.26 15:32 Fraddy Pual

    There are few companies I trust as much as FUNDSRETRIEVER. When I lost $653,000 in Ethereum to a ruthless scam, I thought my life would never be the same. The betrayal cut deep, but I refused to give up. I searched tirelessly for a legitimate way to recover what was stolen, and finally found FUNDSRETRIEVER—the most competent and compassionate recovery team I could have imagined. They handled my case with precision and care, and in the end, my entire ETH wallet was restored. More than the money, they gave me back my hope and happiness. I'm sharing my story because I want others to know that recovery is possible. If a scam has taken from you, don't hesitate—contact FUNDSRETRIEVER today. Email: FUNDSRETRIEVER1@ Gmail.com | WhatsApp: +1 603-512-1448 | Telegram: @FUNDSRETRIEVER

  • 05.07.26 14:44 lydiassmith567

    HIRE A HACKER YOUR STOLEN CRYPTO RECOVERY / BTC / USDT / ETH WITH THE HELP OF CAPITAL CRYPTO RECOVER. I want to share my experience publicly regarding cryptocurrency wallet recovery, I highly recommend you to contact CAPITAL CRYPTO RECOVER, a professional private investigator in the Bitcoin world. They have a certified expert security team specializing in Bitcoin Recovery Services and have helped many people worldwide recover their lost funds. My wife and I were defrauded by an online manipulator posing as an experienced crypto investment professional. We lost $9.2 Million Stolen BTC in cryptocurrency and were left feeling homeless. After spending hours searching for a reliable crypto recovery service, I discovered CAPITAL CRYPTO RECOVER online. By patiently explaining my situation to their team, I was able to recover all my funds. Remarkably, my money was returned to my wallet in less than 24 hours. I am extremely grateful to CAPITAL CRYPTO RECOVER for their excellent assistance—they truly were a godsend in my difficult situation. If you have fallen victim to a cryptocurrency scam, you can reach CAPITAL CRYPTO RECOVER through the following channels Email: [email protected] OR Call/Text: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 05.07.26 14:44 lydiassmith567

    HIRE A HACKER YOUR STOLEN CRYPTO RECOVERY / BTC / USDT / ETH WITH THE HELP OF CAPITAL CRYPTO RECOVER. I want to share my experience publicly regarding cryptocurrency wallet recovery, I highly recommend you to contact CAPITAL CRYPTO RECOVER, a professional private investigator in the Bitcoin world. They have a certified expert security team specializing in Bitcoin Recovery Services and have helped many people worldwide recover their lost funds. My wife and I were defrauded by an online manipulator posing as an experienced crypto investment professional. We lost $9.2 Million Stolen BTC in cryptocurrency and were left feeling homeless. After spending hours searching for a reliable crypto recovery service, I discovered CAPITAL CRYPTO RECOVER online. By patiently explaining my situation to their team, I was able to recover all my funds. Remarkably, my money was returned to my wallet in less than 24 hours. I am extremely grateful to CAPITAL CRYPTO RECOVER for their excellent assistance—they truly were a godsend in my difficult situation. If you have fallen victim to a cryptocurrency scam, you can reach CAPITAL CRYPTO RECOVER through the following channels Email: [email protected] OR Call/Text: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 06.07.26 16:20 Olga Ognjanović

    Having trouble withdrawing funds from an investment platform? ResQprofirm provides fund recovery assistance for individuals seeking help with investment-related disputes. I reached out to them after experiencing problems with an investment platform, and I appreciated their professionalism and support throughout the process. If you're facing a similar situation, act promptly, keep records of your transactions and communications, and seek assistance from a qualified recovery service or the appropriate authorities. Contact: Email: [email protected] Telegram: @ResQprofirm WhatsApp: +1 985 296 9146

  • 06.07.26 16:31 Joseph Weigl

    Invest wisely and stay cautious. Don't be influenced by promises of unusually high returns or convincing sales pitches from brokers. I learned this the hard way after falling victim to an investment scam that promised huge profits. Fortunately, I acted quickly and reported the incident to a recovery firm for assistance. Contact: Email: [email protected] Telegram: @Resqprofirm WhatsApp: +1 985 296 9146

  • 06.07.26 16:33 Jaran Løvlien

    A heartfelt thank you to RESQPRO FIRM for their commitment and professionalism throughout the investigation of my case. Their team worked diligently and helped recover assets valued at $88,000, which were returned to my wallet. I truly appreciate their support, clear communication, and dedication, and I'm grateful for the assistance I received. Contact: Email: [email protected] Telegram: @Resqprofirm WhatsApp: +1 985 296 9146

  • 07.07.26 18:00 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text: +1 (336) 390-6684 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 07.07.26 18:01 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text: +1 (336) 390-6684 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 09.07.26 19:06 Toivo Walli

    I lost 8.56btc to a fake Bitcoin mining site, I tried withdrawing but couldn't approved my process, I reported to !R£SQPROFIRM! via °R£SQproFirm°àt°gmail•com° °tEL£°gram=R£SQprofirm °whaT°Zap+198°52°96°91°46

  • 09.07.26 19:10 Misty Alexander

    Ongoing messages demanding more money before approving withdrawals are a major red flag. Stop engaging and report the incident to a trusted re­covery team. For professional support, you can contact R£sQprofirm using °ResQproFirm°àt°g,*ma'il(•)¢m°, TEL£gram ResQprofirm, or |whaTZap| +1-985-296-9146.

  • 09.07.26 19:13 Clara Soto

    Anyone receiving continued requests for additional deposits from a scam platform should immediately cut off communication and submit the case to a reputable re­covery service for investigation. R£sQprofirm is a dependable firm you can reach at °ResQproFirm°àt°g,*ma'il(•)¢om°, TEL£gram ResQprofirm, or |whaTZap| +1-985-296-9146.

  • 12.07.26 03:30 Kora Baltacha

    Time is critical. Act now by reaching out to a reputable, seasoned recovery specialist who will guide you every step of the way. You'll need to submit transaction proof, scammer details, and any other useful information. Armed with this, the experts can trace and attempt to pull your money back from the scammers' hidden accounts or wallets. Best of all, R£sQprofirm provides recovery help without charging any upfront fees. Contact them immediately via Telegram @ResQprofirm, WhatsApp +19852969146, or email [email protected].

  • 12.07.26 03:33 Pahal Mathew

    It's important to move proactively by engaging an experienced recovery specialist. They will assist you throughout the process. To help them, provide: · Transaction evidence · Scammer information · Any additional relevant details The experts will then track and try to retrieve your funds from the scammers' hidden accounts or wallets. R£sQprofirm offers recovery assistance with no upfront fees. Contact: Telegram: @ResQprofirm WhatsApp: +19852969146 Email: [email protected]

  • 13.07.26 23:49 [email protected]

    One of the biggest concerns I have about cryptocurrency is the lack of regulation. It creates opportunities for scammers to invent convincing stories and fraudulent investment schemes. Unfortunately, some social media platforms continue to display these ads because they profit from them, even after users report them.I personally clicked on a Facebook advertisement for a company called Chickenfastmining and ended up losing more than $120,000 in a scam. I reported the ad, but nothing was done. Later, through a Reddit community, I found a recovery service called CYBERBERSPY that, in my personal experience, they helped me recover $110,000 of my lost funds. If you've been a victim of a cryptocurrency scam, don't lose hope. Explore your options carefully, and always verify the legitimacy of any recovery service before trusting them or paying any fees. Based on my own experience, CYBERBERSPY was helpful to me and i was able to recover my funds back, but I encourage everyone to do their own research before using any recovery service.i highly recommend: ([email protected])

  • 15.07.26 11:53 Sarah Green

    Thank you for showing that success is possible regardless of where someone starts. Your encouragement, valuable advice, and continuous support have inspired me throughout my $160,457k crypto investment recovery journey. I truly appreciate your kindness and dedication. Resqprofirm @gmail.com Telegram: Resqprofirm

  • 15.07.26 11:58 Lily Gagné

    I sincerely appreciate you for proving that anyone can overcome challenges and achieve success. Your unwavering support throughout my trading investment scam of $88,890 recovery journey has been truly inspiring, and your guidance and wisdom have meant a great deal to me. Thank you for everything ResQprofirm@ gmail.com, ResQprofirm on the telegram.

  • 16.07.26 21:38 patricialovick86

    How To Recover Your Bitcoin Without Falling Victim To Scams: A  Testimony Experience With Capital Crypto Recover Services, Contact Telegram: @Capitalcryptorecover Dear Everyone, I would like to take a moment to share my positive experience with Capital Crypto Recover Services. Initially, I was unsure if it would be possible to recover my stolen bitcoins. However, with their expertise and professionalism, I was able to fully recover my funds. Unfortunately, many individuals fall victim to scams in the cryptocurrency space, especially those involving fraudulent investment platforms. However, I advise caution, as not all recovery services are legitimate. I personally lost $273,000 worth of Bitcoin from my Binance account due to a deceptive platform. If you have suffered a similar loss, you may be considering crypto recovery, The Capital Crypto Recover is the most knowledgeable and effective Capital Crypto Recovery Services assisted me in recovering my stolen funds within 24 hours, after getting access to my wallet. Their service was not only prompt but also highly professional and effective, and many recovery services may not be trustworthy. Therefore, I highly recommend Capital Crypto Recover to you. i do always research and see reviews about their service, For assistance finding your misplaced cryptocurrency, get in touch with them, They do their jobs quickly and excellently, Stay safe and vigilant in the crypto world. Contact: [email protected]  You can reach them via email at [email protected] OR Call/Text Number +1 (336)390-6684 his contact website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 16.07.26 21:38 patricialovick86

    How To Recover Your Bitcoin Without Falling Victim To Scams: A  Testimony Experience With Capital Crypto Recover Services, Contact Telegram: @Capitalcryptorecover Dear Everyone, I would like to take a moment to share my positive experience with Capital Crypto Recover Services. Initially, I was unsure if it would be possible to recover my stolen bitcoins. However, with their expertise and professionalism, I was able to fully recover my funds. Unfortunately, many individuals fall victim to scams in the cryptocurrency space, especially those involving fraudulent investment platforms. However, I advise caution, as not all recovery services are legitimate. I personally lost $273,000 worth of Bitcoin from my Binance account due to a deceptive platform. If you have suffered a similar loss, you may be considering crypto recovery, The Capital Crypto Recover is the most knowledgeable and effective Capital Crypto Recovery Services assisted me in recovering my stolen funds within 24 hours, after getting access to my wallet. Their service was not only prompt but also highly professional and effective, and many recovery services may not be trustworthy. Therefore, I highly recommend Capital Crypto Recover to you. i do always research and see reviews about their service, For assistance finding your misplaced cryptocurrency, get in touch with them, They do their jobs quickly and excellently, Stay safe and vigilant in the crypto world. Contact: [email protected]  You can reach them via email at [email protected] OR Call/Text Number +1 (336)390-6684 his contact website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 17.07.26 19:24 laimqq90

    I recommend Marie when it comes to recovering lost/stolen ust/bitcoin or any kind of cryptocurrencies' from fake investment platforms because they're well specialized in that area and you'll get your money back in full. I can boldly say this right now based on my prior deal i had with them; she was the only one who was able to recover my lost money $52,760 dollars back to my account, Only * ([email protected] and WhatsApp +1 7127594675 successful in recovering my money. They are the only one who can fully restore your lost funds to your account without any deductions, I really value their work and am recommending her to you today. THANK ME LATER

  • 17.07.26 20:12 martinsjude080

    Needs Online Fraud Help Contact Mighty Hacker Recovery https://mightyhackarrecovery.com I lost $292,900 in Bitcoin after investing with an online mining company. After realizing I had been scammed, I spent a long time searching for ways to recover my funds and contacted several services without success. During my research, I came across Mighty Hacker Recovery through Google and YouTube. What caught my attention was that they said they would not require any upfront payment before providing their recovery service. I decided to contact them to discuss my case and understand their process. Throughout the process, they kept me informed about the progress. After several days, I was asked to provide my Bitcoin wallet address, and my case was concluded. Their fee was handled after the service rather than being requested in advance. If you've been the victim of a cryptocurrency scam, it's important to do your own research, ask questions, and carefully evaluate any recovery service before proceeding. Every case is different, so take the time to verify information and understand the process before making any decisions. For Bitcoin scam recovery, cryptocurrency scam, crypto recovery service, recover stolen Bitcoin, Bitcoin fraud help, blockchain investigation, crypto wallet recovery, online investment scam, digital asset recovery, and crypto scam support. Contact Them on WhatsApp +1 (343) 947-3496 or [email protected] or [email protected] or https://mightyhackarrecovery.com Scam recovery Online fraud help Scam alert Report fraud Fraud investigation Fake website checker Scam checker Identity theft protection Consumer protection Chargeback for scam Wire transfer scam Tech support scam Employment scam Rental scam Shopping scam Email scam WhatsApp scam Telegram scam Facebook scam Instagram scam

  • 18.07.26 17:12 Malthe Larsen

    My experience with OKX has been deeply frustrating. For months, my account withdrawals were restricted with no explanation or resolution. Multiple emails to their support team were ignored, leaving me without answers or reassurance. This complete lack of communication shattered my trust. I ultimately regained access to my funds only through the help of a third-party recovery service, ResQProfirm. What should have been a reliable platform instead made me feel helpless and cut off from my own assets. [email protected], WhatsApp +19852969146, telegram @Resqprofirm

  • 18.07.26 17:42 پریا رضایی

    OKX has been a major disappointment. My withdrawals were restricted for months, and repeated attempts to contact support went unanswered. This silence destroyed my confidence in the platform. I was only able to recover my funds through a third-party service, ResQProfirm. I trusted OKX for its reliability, but the experience left me feeling trapped and helpless. Timely communication and access to one’s own money should be a basic standard. [email protected], WhatsApp +19852969146, telegram: ResQprofirm

  • 18.07.26 17:46 Adem Akışık

    I truly didn’t expect such an outstanding outcome. Recovering my $49,360 felt impossible at first, but ResQprofirm’s dedication and persistence made it happen. I hold their team in the highest regard. [email protected], WhatsApp +19852969146

  • 18.07.26 23:51 bernalzenaida

    WhatsApp https://wa.link/fhle97 Telegram https://msng.link/o?@techcyberforc=tg As cryptocurrency continues to reshape global finance, cybercriminals are finding new ways to exploit investors through scams, hacks, phishing attacks, fake investment platforms, and other forms of digital asset fraud. For many victims, knowing where to turn after a loss can be one of the biggest challenges. Techy Force Cyber Retrieval was founded with one clear mission: to give victims of crypto fraud a fighting chance through professional blockchain investigations and cybersecurity expertise. Our team brings together experienced blockchain analysts, digital forensic specialists, cybersecurity professionals, and legal partners who work collaboratively to investigate cryptocurrency-related crimes. Using advanced blockchain forensic tools and global investigative techniques, we analyze transaction histories, trace digital asset movements where possible, identify valuable investigative leads, and prepare evidence that may assist clients and the appropriate authorities. We believe blockchain should represent transparency, accountability, and trust—not fear. That’s why we’re committed to helping victims understand their options, navigate the investigative process, and take informed action after cryptocurrency fraud. Every case is different, and while no legitimate recovery service can promise a successful recovery, acting quickly and working with experienced professionals can improve the quality of an investigation. At Techy Force Cyber Retrieval, we do more than investigate digital crimes—we advocate for victims, pursue the facts, and help people regain confidence after cryptocurrency fraud. WhatsApp https://wa.link/fhle97 Telegram https://msng.link/o?@techcyberforc=tg Crypto fraud doesn’t have to be the end of the road. It’s where our investigation begins.

  • 19.07.26 04:10 Fraddy Pual

    I can't thank Fundsretriever enough for everything they did for me. My name is Vanessa Conway, and I'm here to tell you my story of how I recovered money I never thought I'd see again. A few months ago, I put a significant amount of money into what looked like a genuine online investment company. At first, it felt real—they showed me fake profits and convinced me to invest even more. But when I tried to cash out, they went quiet and started asking for extra fees. That's when it hit me—I had been scammed. I was heartbroken, frustrated, and didn't know where to turn. That money was my savings—months of hard work gone. Then I found Fundsretriever online. I reached out, hoping for a miracle. Right away, their team made me feel heard. They were responsive, knowledgeable, and walked me through everything. They didn't just take my case—they took it seriously and kept me in the loop every step of the way. I finally felt like I had real experts fighting for me. And guess what? They actually got my money back. It wasn't instant, and it took teamwork, but it happened. When I saw those funds returned, I cried with joy. I'm sharing this so that anyone else out there who's been scammed knows—don't lose hope. Do your research before investing, and stay far away from platforms that promise too much too fast. And if you've already been stung, don't wait—get professional help immediately. Thank you, Fundsretriever, from the bottom of my heart. You didn't just recover my money—you restored my faith. — Vanessa Conway 📧 [email protected] 📱 WhatsApp: +16035121448 💬 Telegram: @Fundsretriever

  • 19.07.26 19:53 kimberlyhebertt6877

    I invested in bitcoin trading After losing $78.4 USDT) linked to a romance fraud scam worth of cryptocurrency through an online investment platform and later discovered it was a scam. After extensive research for recovery options, I contacted CAPITAL CRYPTO RECOVER based on positive client reviews and recommendations. Their professional security team guided me through the recovery process using advanced technology, and I was able to recover my lost cryptocurrency successfully. I am truly grateful for their support and assistance during such a difficult experience. I will advise you to contact CAPITAL CRYPTO RECOVER helped me recover my funds. For anyone facing similar issues, Website: https://recovercapital.wixsite.com/capital-crypto-rec-1 Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text Number: +1 (336) 390-6684

  • 19.07.26 19:53 kimberlyhebertt6877

    I invested in bitcoin trading After losing $78.4 USDT) linked to a romance fraud scam worth of cryptocurrency through an online investment platform and later discovered it was a scam. After extensive research for recovery options, I contacted CAPITAL CRYPTO RECOVER based on positive client reviews and recommendations. Their professional security team guided me through the recovery process using advanced technology, and I was able to recover my lost cryptocurrency successfully. I am truly grateful for their support and assistance during such a difficult experience. I will advise you to contact CAPITAL CRYPTO RECOVER helped me recover my funds. For anyone facing similar issues, Website: https://recovercapital.wixsite.com/capital-crypto-rec-1 Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text Number: +1 (336) 390-6684

  • 19.07.26 19:54 kimberlyhebertt6877

    I invested in bitcoin trading After losing $78.4 USDT) linked to a romance fraud scam worth of cryptocurrency through an online investment platform and later discovered it was a scam. After extensive research for recovery options, I contacted CAPITAL CRYPTO RECOVER based on positive client reviews and recommendations. Their professional security team guided me through the recovery process using advanced technology, and I was able to recover my lost cryptocurrency successfully. I am truly grateful for their support and assistance during such a difficult experience. I will advise you to contact CAPITAL CRYPTO RECOVER helped me recover my funds. For anyone facing similar issues, Website: https://recovercapital.wixsite.com/capital-crypto-rec-1 Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text Number: +1 (336) 390-6684

  • 30.07.26 00:04 Ahmed

    A really cool analysis, thank you. I was especially struck by how strictly the order is defined: data processing and formatting come first, with color only at the very end. This really saves you from the typical mistake of "first a pretty palette, then we figure out what the chart is for." And the palette validator with OKLCH + colorblindness check is absolutely fantastic; you almost never see that in regular tools. By the way, while reading about rank-trajectory and the logarithmic scale, I immediately remembered how convenient it is to analyze dynamics on charts in ExpertOption—I've been trading there for quite some time now. When the data is well visualized, decisions are noticeably easier and more relaxed. I also liked the point about "no more than eight colors" and the dual-axis ban. Strict restrictions sometimes actually produce better results than complete freedom. I'll try this approach myself.

  • 30.07.26 17:27 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 30.07.26 17:27 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 31.07.26 16:21 rssllhrnsb

    I learned an important lesson after investing in what appeared to be a genuine opportunity. Unfortunately, I was unable to access my funds, which reinforced the importance of carrying out thorough due diligence, checking whether an investment is appropriately regulated, and seeking qualified professional advice rather than relying solely on online reviews or testimonials. During the process of addressing my case, I worked with Mrs. Doris Ashley, who communicated clearly, provided regular updates, and handled the matter in a professional manner. According to my experience, I have recovered $50,000 so far, while efforts to resolve the remaining balance are still in progress. If you wish to contact her, the details I used are: Mrs. Tatiana Sorina
TEXT : (tatianasorina06 at G.Ma IL ..c 0 m ) Before committing money to any investment, take time to verify the legitimacy of the platform, confirm any relevant regulatory authorisations, and avoid investing more than you can comfortably afford to lose.

  • 01.08.26 15:05 keithwilson9899

    ETHEREUM RECOVERY ASSISTANCE: CAPITAL CRYPTO RECOVER HELPED ME RECOVER $98,000 WORTH OF LOST ETH In cases of cryptocurrency scams, having accurate information and trusted support is essential. I would like to recommend Capital Crypto Recover Service, a professional team that specializes in assisting individuals with the recovery of lost or stolen Bitcoin and Ethereum (ETH). Their experienced experts are dedicated to helping victims of digital asset fraud by carefully analyzing each case, developing strategic recovery plans, Capital Crypto Recover Service knowledgeable team's primary goals are to satisfy clients and offer significant support and working diligently toward fund retrieval. The team is committed to providing reliable assistance and maintaining a high level of client satisfaction. Based on my assessment, their reputation professionalism and a strong commitment to their clients. If you have experienced a cryptocurrency loss, you can contacting them for further assistance Phone (Call/Text): +1 (336) 390-6684 Email: [email protected] Alternate Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 01.08.26 15:05 keithwilson9899

    ETHEREUM RECOVERY ASSISTANCE: CAPITAL CRYPTO RECOVER HELPED ME RECOVER $98,000 WORTH OF LOST ETH In cases of cryptocurrency scams, having accurate information and trusted support is essential. I would like to recommend Capital Crypto Recover Service, a professional team that specializes in assisting individuals with the recovery of lost or stolen Bitcoin and Ethereum (ETH). Their experienced experts are dedicated to helping victims of digital asset fraud by carefully analyzing each case, developing strategic recovery plans, Capital Crypto Recover Service knowledgeable team's primary goals are to satisfy clients and offer significant support and working diligently toward fund retrieval. The team is committed to providing reliable assistance and maintaining a high level of client satisfaction. Based on my assessment, their reputation professionalism and a strong commitment to their clients. If you have experienced a cryptocurrency loss, you can contacting them for further assistance Phone (Call/Text): +1 (336) 390-6684 Email: [email protected] Alternate Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 03.08.26 20:05 Philip

    I was a victim of a crypto theft involving a Pink Drainer, which resulted in the theft of my Wrapped Bitcoin (WBTC) from my Polygon network. The experience was incredibly frustrating and distressing, as I had no idea how to recover my funds. Unfortunately, by the time I noticed the theft, the funds had already been drained to an address that I had no control over, making it seem like an irreversible situation.The attack happened when I clicked on what appeared to be a legitimate link. I didn’t realize at the time that it was a phishing attempt designed to siphon off my private keys and access my wallet. The Pink Drainer, a type of malicious script used by attackers, is specifically designed to exploit such vulnerabilities in crypto wallets. The moment I realized that my WBTC had been drained from my Polygon network. I felt completely helpless, as I didn’t have direct access to the thief's address, and there was no way to reverse the transaction on my own at that point, I started searching for ways to recover my funds, but most resources only offered generic advice that wasn’t practical in this particular case. I quickly realized that if I wanted to have any hope of getting my assets back, I would need professional assistance. After some research, I came across a reliable and trusted recovery team called Aspen Recovery Experts. Their expertise in cryptocurrency recovery, especially in cases like mine, seemed promising.I decided to reach out to Aspen Recovery Experts, and I’m incredibly grateful that I did. Their team of crypto recovery experts was able to help me trace the stolen funds and identify the path the funds took after they left my wallet. Using advanced tools and techniques, they were able to track the transactions on the blockchain, helping me understand where my WBTC had been sent. More importantly, they worked tirelessly to assist me in contacting the necessary parties and even interfaced with blockchain analysts to help facilitate the recovery process.Thanks to their efforts, I was able to successfully recover my stolen funds. The entire process took some time, but the Aspen Recovery Experts dedicated team provided regular updates and kept me informed throughout the process, which gave me a sense of hope and relief during an otherwise stressful time. If you’re ever in a similar situation, I highly recommend reaching out to a trusted recovery team like Aspen Recovery Expertshhh . Their professionalism, knowledge, and expertise were critical in helping me recover my funds and regain control of my crypto assets. Whatsapp : +1 747 231 9036 Telegram : @ prohackerspy Email : [email protected]

  • 03.08.26 20:06 Philip

    I was a victim of a crypto theft involving a Pink Drainer, which resulted in the theft of my Wrapped Bitcoin (WBTC) from my Polygon network. The experience was incredibly frustrating and distressing, as I had no idea how to recover my funds. Unfortunately, by the time I noticed the theft, the funds had already been drained to an address that I had no control over, making it seem like an irreversible situation.The attack happened when I clicked on what appeared to be a legitimate link. I didn’t realize at the time that it was a phishing attempt designed to siphon off my private keys and access my wallet. The Pink Drainer, a type of malicious script used by attackers, is specifically designed to exploit such vulnerabilities in crypto wallets. The moment I realized that my WBTC had been drained from my Polygon network. I felt completely helpless, as I didn’t have direct access to the thief's address, and there was no way to reverse the transaction on my own at that point, I started searching for ways to recover my funds, but most resources only offered generic advice that wasn’t practical in this particular case. I quickly realized that if I wanted to have any hope of getting my assets back, I would need professional assistance. After some research, I came across a reliable and trusted recovery team called Aspen Recovery Experts. Their expertise in cryptocurrency recovery, especially in cases like mine, seemed promising.I decided to reach out to Aspen Recovery Experts, and I’m incredibly grateful that I did. Their team of crypto recovery experts was able to help me trace the stolen funds and identify the path the funds took after they left my wallet. Using advanced tools and techniques, they were able to track the transactions on the blockchain, helping me understand where my WBTC had been sent. More importantly, they worked tirelessly to assist me in contacting the necessary parties and even interfaced with blockchain analysts to help facilitate the recovery process.Thanks to their efforts, I was able to successfully recover my stolen funds. The entire process took some time, but the Aspen Recovery Experts dedicated team provided regular updates and kept me informed throughout the process, which gave me a sense of hope and relief during an otherwise stressful time. If you’re ever in a similar situation, I highly recommend reaching out to a trusted recovery team like Aspen Recovery Expertshhh . Their professionalism, knowledge, and expertise were critical in helping me recover my funds and regain control of my crypto assets. Whatsapp : +1 747 231 9036 Telegram : @ prohackerspy Email : [email protected]

  • 04.08.26 11:05 Kisnoles

    Excellent analysis, thank you. I was particularly struck by how rigidly the skill sets the order: data processing and form come first, with color coming last. This really cures the habit of "first a pretty palette, then we'll figure it out." A palette validator using OKLCH + color blindness + WCAG is something most chart generators lack. And regarding the boundaries of competence, it's very clear. Where there's a self-checking loop (color), you delegate freely. Where there's a heuristic (form, data interpretation), you remain the final filter. This is a universal principle, not just for /dataviz. By the way, when you look at trading dashboards (including those of decent platforms like ExpertOption), it's immediately clear who thought about readability and who just threw in rainbow lines. Tools like this skill could greatly improve the quality of analytics. Thanks again for the detailed analysis – saved.

  • 04.08.26 12:37 kimberlyhebertt6877

    I invested in bitcoin trading After losing $78.4 USDT) linked to a romance fraud scam worth of cryptocurrency through an online investment platform and later discovered it was a scam. After extensive research for recovery options, I contacted CAPITAL CRYPTO RECOVER based on positive client reviews and recommendations. Their professional security team guided me through the recovery process using advanced technology, and I was able to recover my lost cryptocurrency successfully. I am truly grateful for their support and assistance during such a difficult experience. I will advise you to contact CAPITAL CRYPTO RECOVER helped me recover my funds. For anyone facing similar issues, Website: https://recovercapital.wixsite.com/capital-crypto-rec-1 Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text Number: +1 (336) 390-6684

  • 04.08.26 12:37 kimberlyhebertt6877

    I invested in bitcoin trading After losing $78.4 USDT) linked to a romance fraud scam worth of cryptocurrency through an online investment platform and later discovered it was a scam. After extensive research for recovery options, I contacted CAPITAL CRYPTO RECOVER based on positive client reviews and recommendations. Their professional security team guided me through the recovery process using advanced technology, and I was able to recover my lost cryptocurrency successfully. I am truly grateful for their support and assistance during such a difficult experience. I will advise you to contact CAPITAL CRYPTO RECOVER helped me recover my funds. For anyone facing similar issues, Website: https://recovercapital.wixsite.com/capital-crypto-rec-1 Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] Call/Text Number: +1 (336) 390-6684

  • 06.08.26 08:11 ROMMYHENDERSON344

    All you need is to hire an expert to help you accomplish that. If there's any need to spy on your partner's phone. From my experience I lacked evidence to confront my husband on my suspicion on his infidelity, until I came across REALCYBERHACKERS which many commend him of assisting them in their spying mission. So I contacted him and he provided me with access into his phone to view all text messages, call logs, WhatsApp messages and even her location. This evidence helped me move him off my life . I recommend you consult REALCYBERHACKERS AT gmail com or whatsapp +14106350697 if you need access to your partner's phone or any kind of hacking, they carry out all kinds of hacking job

  • 06.08.26 13:56 lydiassmith567

    HIRE A HACKER YOUR STOLEN CRYPTO RECOVERY / BTC / USDT / ETH WITH THE HELP OF CAPITAL CRYPTO RECOVER. I want to share my experience publicly regarding cryptocurrency wallet recovery, I highly recommend you to contact CAPITAL CRYPTO RECOVER, a professional private investigator in the Bitcoin world. They have a certified expert security team specializing in Bitcoin Recovery Services and have helped many people worldwide recover their lost funds. My wife and I were defrauded by an online manipulator posing as an experienced crypto investment professional. We lost $9.2 Million Stolen BTC in cryptocurrency and were left feeling homeless. After spending hours searching for a reliable crypto recovery service, I discovered CAPITAL CRYPTO RECOVER online. By patiently explaining my situation to their team, I was able to recover all my funds. Remarkably, my money was returned to my wallet in less than 24 hours. I am extremely grateful to CAPITAL CRYPTO RECOVER for their excellent assistance—they truly were a godsend in my difficult situation. If you have fallen victim to a cryptocurrency scam, you can reach CAPITAL CRYPTO RECOVER through the following channels Email: [email protected] OR Call/Text: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 06.08.26 13:56 lydiassmith567

    HIRE A HACKER YOUR STOLEN CRYPTO RECOVERY / BTC / USDT / ETH WITH THE HELP OF CAPITAL CRYPTO RECOVER. I want to share my experience publicly regarding cryptocurrency wallet recovery, I highly recommend you to contact CAPITAL CRYPTO RECOVER, a professional private investigator in the Bitcoin world. They have a certified expert security team specializing in Bitcoin Recovery Services and have helped many people worldwide recover their lost funds. My wife and I were defrauded by an online manipulator posing as an experienced crypto investment professional. We lost $9.2 Million Stolen BTC in cryptocurrency and were left feeling homeless. After spending hours searching for a reliable crypto recovery service, I discovered CAPITAL CRYPTO RECOVER online. By patiently explaining my situation to their team, I was able to recover all my funds. Remarkably, my money was returned to my wallet in less than 24 hours. I am extremely grateful to CAPITAL CRYPTO RECOVER for their excellent assistance—they truly were a godsend in my difficult situation. If you have fallen victim to a cryptocurrency scam, you can reach CAPITAL CRYPTO RECOVER through the following channels Email: [email protected] OR Call/Text: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 11.08.26 03:43 raymont0714

    I recommend a trusted cybersecurity PRO with experience in authorized device access, security testing, and data recovery. SHE work only with the owner's consent and follow all legal and privacy rules on meta data. With permission, this specialist can recover lost files, check device security offline & online, and review texts, call records, or hidden data (spy or lurk around a cheating partner or colleuge). Strict confidentiality agreements protect the information, and client details remain private. The work is careful, efficient, and suited to complex cases. For help securing or recovering information from a phone or another electronic device, use the details below 2 consult [email protected] +44 7476618364 I trust her secrecy a living witness. Her discretion is unmatched, ensuring your privacy is always maintained

  • 12.08.26 16:37 rssllhrnsb

    I learned an important lesson after investing in what appeared to be a genuine opportunity. Unfortunately, I was unable to access my funds, which reinforced the importance of carrying out thorough due diligence, checking whether an investment is appropriately regulated, and seeking qualified professional advice rather than relying solely on online reviews or testimonials. During the process of addressing my case, I worked with Mrs. Tatiana Sorina , who communicated clearly, provided regular updates, and handled the matter in a professional manner. According to my experience, I have recovered $50,000 so far, while efforts to resolve the remaining balance are still in progress. If you wish to contact her, the details I used are: Mrs. Tatiana Sorina
TEXT : (tatianasorina06 at G_Ma IL dot ..c 0 m)…. Before committing money to any investment, take time to verify the legitimacy of the platform, confirm any relevant regulatory authorisations, and avoid investing more than you can comfortably afford to lose.

  • 16.08.26 01:44 Matt Kegan

    CapitalNode Analytics. They help to investigate and recover stolen digital assets from fake trading platforms. Great firm i must say.

  • 18.08.26 04:59 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone WhatsApp/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 18.08.26 04:59 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone WhatsApp/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 19.08.26 14:50 BAYER7043

    My account was locked, and I couldn’t access my own information until [email protected] +447476618364 whats?up? helped me recover it. This lady hacker was kind and professional, but this experience showed me how risky account lockouts can be. If you’re facing the same problem, do not panic consult her A. S. A. P. Be careful with recovery agents outchea, and research their name, business, and reviews before sharing any details. Never send passwords, security codes, banking information, or copies of your ID unless you’ve confirmed who you’re dealing with. Be wary of promises that sound too good to be true, especially claims that require little information or guarantee instant access with outrageous fees.

  • 20.08.26 11:32 michaeldavenport218

    I was recently scammed out of $53,000 by a fraudulent Bitcoin investment scheme, which added significant stress to my already difficult health issues, as I was also facing cancer surgery expenses. Desperate to recover my funds, I spent hours researching and consulting other victims, which led me to discover the excellent reputation of Capital Crypto Recover, I came across a Google post It was only after spending many hours researching and asking other victims for advice that I discovered Capital Crypto Recovery’s stellar reputation. I decided to contact them because of their successful recovery record and encouraging client testimonials. I had no idea that this would be the pivotal moment in my fight against cryptocurrency theft. Thanks to their expert team, I was able to recover my lost cryptocurrency back. The process was intricate, but Capital Crypto Recovery's commitment to utilizing the latest technology ensured a successful outcome. I highly recommend their services to anyone who has fallen victim to cryptocurrency fraud. For assistance contact [email protected] and on Telegram OR WhatsApp Number +1 (336)390-6684 via email: [email protected] you can visit his website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 20.08.26 11:32 michaeldavenport218

    I was recently scammed out of $53,000 by a fraudulent Bitcoin investment scheme, which added significant stress to my already difficult health issues, as I was also facing cancer surgery expenses. Desperate to recover my funds, I spent hours researching and consulting other victims, which led me to discover the excellent reputation of Capital Crypto Recover, I came across a Google post It was only after spending many hours researching and asking other victims for advice that I discovered Capital Crypto Recovery’s stellar reputation. I decided to contact them because of their successful recovery record and encouraging client testimonials. I had no idea that this would be the pivotal moment in my fight against cryptocurrency theft. Thanks to their expert team, I was able to recover my lost cryptocurrency back. The process was intricate, but Capital Crypto Recovery's commitment to utilizing the latest technology ensured a successful outcome. I highly recommend their services to anyone who has fallen victim to cryptocurrency fraud. For assistance contact [email protected] and on Telegram OR WhatsApp Number +1 (336)390-6684 via email: [email protected] you can visit his website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 23.08.26 20:02 leslieyee

    Excellent analysis by /dataviz! I was particularly struck by how strictly the order is defined: "data meaning first, color last" and how the validator actually adjusts the palette according to OKLCH, color blindness, and WCAG standards. These rules greatly improve the quality of charts. By the way, a similar approach to clean and legible charts is highly valued in trading—for example, on the ExpertOption platform, the interface and price visualization are designed to ensure information is read instantly and without unnecessary noise.

  • 25.08.26 13:44 lydiassmith567

    HIRE A HACKER YOUR STOLEN CRYPTO RECOVERY / BTC / USDT / ETH WITH THE HELP OF CAPITAL CRYPTO RECOVER. I want to share my experience publicly regarding cryptocurrency wallet recovery, I highly recommend you to contact CAPITAL CRYPTO RECOVER, a professional private investigator in the Bitcoin world. They have a certified expert security team specializing in Bitcoin Recovery Services and have helped many people worldwide recover their lost funds. My wife and I were defrauded by an online manipulator posing as an experienced crypto investment professional. We lost $9.2 Million Stolen BTC in cryptocurrency and were left feeling homeless. After spending hours searching for a reliable crypto recovery service, I discovered CAPITAL CRYPTO RECOVER online. By patiently explaining my situation to their team, I was able to recover all my funds. Remarkably, my money was returned to my wallet in less than 24 hours. I am extremely grateful to CAPITAL CRYPTO RECOVER for their excellent assistance—they truly were a godsend in my difficult situation. If you have fallen victim to a cryptocurrency scam, you can reach CAPITAL CRYPTO RECOVER through the following channels Email: [email protected] OR Call/WhatsApp: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 25.08.26 13:44 lydiassmith567

    HIRE A HACKER YOUR STOLEN CRYPTO RECOVERY / BTC / USDT / ETH WITH THE HELP OF CAPITAL CRYPTO RECOVER. I want to share my experience publicly regarding cryptocurrency wallet recovery, I highly recommend you to contact CAPITAL CRYPTO RECOVER, a professional private investigator in the Bitcoin world. They have a certified expert security team specializing in Bitcoin Recovery Services and have helped many people worldwide recover their lost funds. My wife and I were defrauded by an online manipulator posing as an experienced crypto investment professional. We lost $9.2 Million Stolen BTC in cryptocurrency and were left feeling homeless. After spending hours searching for a reliable crypto recovery service, I discovered CAPITAL CRYPTO RECOVER online. By patiently explaining my situation to their team, I was able to recover all my funds. Remarkably, my money was returned to my wallet in less than 24 hours. I am extremely grateful to CAPITAL CRYPTO RECOVER for their excellent assistance—they truly were a godsend in my difficult situation. If you have fallen victim to a cryptocurrency scam, you can reach CAPITAL CRYPTO RECOVER through the following channels Email: [email protected] OR Call/WhatsApp: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 30.08.26 15:37 [email protected]

    Discovering I had been defrauded, I searched online for services claiming to recover stolen ETH. I contacted several companies, but none succeeded. Although some claimed they could trace assets or recover funds, I could not verify their success or recover my money. I later found SYLVESTER BRYANT Recovery through Google. After contacting him, he recovered 450,000,00. He can be reached at [email protected] or WhatsApp at +1 512 577 7957.

  • 30.08.26 15:37 [email protected]

    Discovering I had been defrauded, I searched online for services claiming to recover stolen ETH. I contacted several companies, but none succeeded. Although some claimed they could trace assets or recover funds, I could not verify their success or recover my money. I later found SYLVESTER BRYANT Recovery through Google. After contacting him, he recovered 450,000,00. He can be reached at [email protected] or WhatsApp at +1 512 577 7957.

  • 01.09.26 11:16 lisawerth897

    My Experience With Cryptocurrency — CAPITAL CRYPTO RECOVER I lost over $82,000 in Bitcoin after falling victim to a fraudulent online investment scheme. After realizing I had been scammed, I spent considerable time researching possible ways to recover my funds. During my research, I came across CAPITAL CRYPTO RECOVER and decided to contact them after reading their reported success record and encouraging client positive reviews and testimonials. Their team guided me through the recovery process, and I was grateful to successfully recover my lost cryptocurrency. The experience was challenging, but I appreciated the assistance and support I received throughout the process. I’m sharing my experience in the hope that it may encourage other victims to carefully research their options and verify any recovery service before proceeding. I will forever be thankful to you CAPITAL CRYPTO RECOVER 📧 [email protected] 🌐 Website: recovercapital.wixsite.com/capital-crypto-rec-1 📧 [email protected] 📞 Call/WhatsApp: +1 (336) 390-6684

  • 01.09.26 11:16 lisawerth897

    My Experience With Cryptocurrency — CAPITAL CRYPTO RECOVER I lost over $82,000 in Bitcoin after falling victim to a fraudulent online investment scheme. After realizing I had been scammed, I spent considerable time researching possible ways to recover my funds. During my research, I came across CAPITAL CRYPTO RECOVER and decided to contact them after reading their reported success record and encouraging client positive reviews and testimonials. Their team guided me through the recovery process, and I was grateful to successfully recover my lost cryptocurrency. The experience was challenging, but I appreciated the assistance and support I received throughout the process. I’m sharing my experience in the hope that it may encourage other victims to carefully research their options and verify any recovery service before proceeding. I will forever be thankful to you CAPITAL CRYPTO RECOVER 📧 [email protected] 🌐 Website: recovercapital.wixsite.com/capital-crypto-rec-1 📧 [email protected] 📞 Call/WhatsApp: +1 (336) 390-6684

  • 01.09.26 17:34 Garry42

    Really crazy world. These fraudsters go at any length to steal your hard earned funds. I have been a victim of a bitcoin scam about 7 months back. A Con artist gained access to my cashapp account through a phishing scam. They stole $409,000. I was really devastated. I did everything to get back my funds by contacting the FBI but they claimed there was nothing they could do. A friend told me about a recovery expert. He helps fight against various phishing and investment scams and they were able to help trace and recover my funds even though it took over 2 days. you can reach out to him through recoverydarek@gmail. com . I can guarantee his services are still active.

  • 01.09.26 17:34 Garry42

    Really crazy world. These fraudsters go at any length to steal your hard earned funds. I have been a victim of a bitcoin scam about 7 months back. A Con artist gained access to my cashapp account through a phishing scam. They stole $409,000. I was really devastated. I did everything to get back my funds by contacting the FBI but they claimed there was nothing they could do. A friend told me about a recovery expert. He helps fight against various phishing and investment scams and they were able to help trace and recover my funds even though it took over 2 days. you can reach out to him through recoverydarek@gmail. com . I can guarantee his services are still active.

  • 02.09.26 03:43 kimberlyhebertt6877

    I invested in bitcoin trading After losing $78.4 USDT) linked to a romance fraud scam worth of cryptocurrency through an online investment platform and later discovered it was a scam. After extensive research for recovery options, I contacted CAPITAL CRYPTO RECOVER based on positive client reviews and recommendations. Their professional security team guided me through the recovery process using advanced technology, and I was able to recover my lost cryptocurrency successfully. I am truly grateful for their support and assistance during such a difficult experience. I will advise you to contact CAPITAL CRYPTO RECOVER helped me recover my funds. For anyone facing similar issues, Website: https://recovercapital.wixsite.com/capital-crypto-rec-1 Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] WhatsApp/Text Number: +1 (336) 390-6684

  • 02.09.26 03:43 kimberlyhebertt6877

    I invested in bitcoin trading After losing $78.4 USDT) linked to a romance fraud scam worth of cryptocurrency through an online investment platform and later discovered it was a scam. After extensive research for recovery options, I contacted CAPITAL CRYPTO RECOVER based on positive client reviews and recommendations. Their professional security team guided me through the recovery process using advanced technology, and I was able to recover my lost cryptocurrency successfully. I am truly grateful for their support and assistance during such a difficult experience. I will advise you to contact CAPITAL CRYPTO RECOVER helped me recover my funds. For anyone facing similar issues, Website: https://recovercapital.wixsite.com/capital-crypto-rec-1 Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] WhatsApp/Text Number: +1 (336) 390-6684

  • 04.09.26 21:51 Kovengray

    Recovering your lost investment funds as the case might be, is not what you can do alone, you’d require the service of a trained recovery specialist. A recovery specialist is a person or a group of people who are well equipped to work around the brokerage network. They have vast knowledge about the whole network and have the right software and private keys to follow any transaction. I was ripped off trading online to an investment broker, good thing I got every penny back through the help of Gavin ray he’s a genius Contact : Gavinray78 at gmail com or WhatsApp +1 352 322 2096 It is also important to be patient and really calm during the process.

  • 05.09.26 21:38 [email protected]

    I invested 45,000  Euro, and later aggreviated to 198,000 Euro.  I requested  to place ‎Withdrawal of my funds to be paid to my Bank account. But nothing happened I was subjected to pay more fee until I can get my funds on my account, i got in touch with Theodore ryan here on this platform who had helped a lot of people, I followed all instructions and he legally got back my withheld funds, I got threatened by the company that if I don’t pay they will get my account frozen, all thanks to Theodore ryan and I highly recommend him to anyone dealing with an unregulated broker company… contact him on his Gmail - theodoreryan318@  gmail .  com

  • 09.09.26 21:31 lisawerth897

    My Experience With Cryptocurrency — CAPITAL CRYPTO RECOVER I lost over $82,000 in Bitcoin after falling victim to a fraudulent online investment scheme. After realizing I had been scammed, I spent considerable time researching possible ways to recover my funds. During my research, I came across CAPITAL CRYPTO RECOVER and decided to contact them after reading their reported success record and encouraging client positive reviews and testimonials. Their team guided me through the recovery process, and I was grateful to successfully recover my lost cryptocurrency. The experience was challenging, but I appreciated the assistance and support I received throughout the process. I’m sharing my experience in the hope that it may encourage other victims to carefully research their options and verify any recovery service before proceeding. I will forever be thankful to you CAPITAL CRYPTO RECOVER 📧 [email protected] 🌐 Website: recovercapital.wixsite.com/capital-crypto-rec-1 📧 [email protected] 📞 Call/WhatsApp: +1 (336) 390-6684

  • 09.09.26 21:31 lisawerth897

    My Experience With Cryptocurrency — CAPITAL CRYPTO RECOVER I lost over $82,000 in Bitcoin after falling victim to a fraudulent online investment scheme. After realizing I had been scammed, I spent considerable time researching possible ways to recover my funds. During my research, I came across CAPITAL CRYPTO RECOVER and decided to contact them after reading their reported success record and encouraging client positive reviews and testimonials. Their team guided me through the recovery process, and I was grateful to successfully recover my lost cryptocurrency. The experience was challenging, but I appreciated the assistance and support I received throughout the process. I’m sharing my experience in the hope that it may encourage other victims to carefully research their options and verify any recovery service before proceeding. I will forever be thankful to you CAPITAL CRYPTO RECOVER 📧 [email protected] 🌐 Website: recovercapital.wixsite.com/capital-crypto-rec-1 📧 [email protected] 📞 Call/WhatsApp: +1 (336) 390-6684

  • 09.09.26 23:22 Fraddy Pual

    Hearing that these individuals are focusing on other people makes me very sad. I had a similar situation with them and lost a lot of money, but after learning about (Cruxcipherteam @ proton DoT me), whataqq:+168160-15021, telegram: @Cruxcipherteam I was able to get my money back. It's critical that we all be watchful and keep reporting these occurrences.

  • 11.09.26 03:23 kimberlyhebertt6877

    I invested in bitcoin trading After losing $78.4 USDT) linked to a romance fraud scam worth of cryptocurrency through an online investment platform and later discovered it was a scam. After extensive research for recovery options, I contacted CAPITAL CRYPTO RECOVER based on positive client reviews and recommendations. Their professional security team guided me through the recovery process using advanced technology, and I was able to recover my lost cryptocurrency successfully. I am truly grateful for their support and assistance during such a difficult experience. I will advise you to contact CAPITAL CRYPTO RECOVER helped me recover my funds. For anyone facing similar issues, Website: https://recovercapital.wixsite.com/capital-crypto-rec-1 Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] WhatsApp/Text Number: +1 (336) 390-6684

  • 11.09.26 03:23 kimberlyhebertt6877

    I invested in bitcoin trading After losing $78.4 USDT) linked to a romance fraud scam worth of cryptocurrency through an online investment platform and later discovered it was a scam. After extensive research for recovery options, I contacted CAPITAL CRYPTO RECOVER based on positive client reviews and recommendations. Their professional security team guided me through the recovery process using advanced technology, and I was able to recover my lost cryptocurrency successfully. I am truly grateful for their support and assistance during such a difficult experience. I will advise you to contact CAPITAL CRYPTO RECOVER helped me recover my funds. For anyone facing similar issues, Website: https://recovercapital.wixsite.com/capital-crypto-rec-1 Email: [email protected] Telegram: @Capitalcryptorecover Contact: [email protected] WhatsApp/Text Number: +1 (336) 390-6684

  • 15.09.26 03:35 elioduncan

    I fell victim to a freelance web development contract scam that ultimately cost me CAD 4,000. It all started when I came across a job posting on Indeed Canada, a popular online job portal. The position seemed perfect: a freelance web developer role for an established company looking for someone to design and build a fully functional e-commerce website. The job promised a high payment of CAD 20,000 upon successful completion, which sounded like a great opportunity for me to gain experience and earn decent pay.The employer, who introduced himself as a project manager from a "well-known" tech company, was very persuasive and professional in our initial communication. He explained that the project involved developing a user-friendly, responsive online store for their client and that they had a strict timeline to meet. He assured me that the payment would be made promptly after completing the tasks. However, before starting the work, he told me that I would need to pay an upfront fee of CAD 4,000 to cover certain software tools and licensing fees required for the project. This was supposedly a part of their company policy for freelance contractors, ensuring access to their premium resources. The idea of working on a professional project, coupled with the promise of a substantial payout, convinced me to pay the upfront fee.As soon as I made the payment, the project manager became increasingly difficult to reach. He initially responded to my emails and provided some vague instructions on what the project would entail, but as time went on, communication slowed to a complete halt. I never received the required tools or any proper project details. My emails went unanswered, and any attempts to contact the company were met with silence. After waiting for weeks, I realized that I had been scammed.Desperate to recover my money, I turned to TechY Force Cyber Retrieval, a service that specializes in helping victims of online scams. They helped me track the payment and took legal steps to pursue the fraudsters. Through their guidance, I was able to recover the full CAD 4,000. TechY Force Cyber Retrieval worked with my bank to reverse the transaction and liaised with the authorities to trace the scammer's details.This was a hard lesson, and I now know to be highly cautious about online job offers that require upfront payments. It is crucial to research companies thoroughly and avoid any job that seems too good to be true, especially when it involves paying money upfront. WhatsApp https://wa.link/2x6ktp Mail. [email protected]

  • 15.09.26 15:45 lydiassmith567

    HIRE A HACKER YOUR STOLEN CRYPTO RECOVERY / BTC / USDT / ETH WITH THE HELP OF CAPITAL CRYPTO RECOVER. I want to share my experience publicly regarding cryptocurrency wallet recovery, I highly recommend you to contact CAPITAL CRYPTO RECOVER, a professional private investigator in the Bitcoin world. They have a certified expert security team specializing in Bitcoin Recovery Services and have helped many people worldwide recover their lost funds. My wife and I were defrauded by an online manipulator posing as an experienced crypto investment professional. We lost $9.2 Million Stolen BTC in cryptocurrency and were left feeling homeless. After spending hours searching for a reliable crypto recovery service, I discovered CAPITAL CRYPTO RECOVER online. By patiently explaining my situation to their team, I was able to recover all my funds. Remarkably, my money was returned to my wallet in less than 24 hours. I am extremely grateful to CAPITAL CRYPTO RECOVER for their excellent assistance—they truly were a godsend in my difficult situation. If you have fallen victim to a cryptocurrency scam, you can reach CAPITAL CRYPTO RECOVER through the following channels Email: [email protected] OR Call/WhatsApp: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 15.09.26 15:45 lydiassmith567

    HIRE A HACKER YOUR STOLEN CRYPTO RECOVERY / BTC / USDT / ETH WITH THE HELP OF CAPITAL CRYPTO RECOVER. I want to share my experience publicly regarding cryptocurrency wallet recovery, I highly recommend you to contact CAPITAL CRYPTO RECOVER, a professional private investigator in the Bitcoin world. They have a certified expert security team specializing in Bitcoin Recovery Services and have helped many people worldwide recover their lost funds. My wife and I were defrauded by an online manipulator posing as an experienced crypto investment professional. We lost $9.2 Million Stolen BTC in cryptocurrency and were left feeling homeless. After spending hours searching for a reliable crypto recovery service, I discovered CAPITAL CRYPTO RECOVER online. By patiently explaining my situation to their team, I was able to recover all my funds. Remarkably, my money was returned to my wallet in less than 24 hours. I am extremely grateful to CAPITAL CRYPTO RECOVER for their excellent assistance—they truly were a godsend in my difficult situation. If you have fallen victim to a cryptocurrency scam, you can reach CAPITAL CRYPTO RECOVER through the following channels Email: [email protected] OR Call/WhatsApp: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

Для участия в Чате вам необходим бесплатный аккаунт pro-blockchain.com Войти Регистрация
Есть вопросы?
С вами на связи 24/7
Help Icon