C# Класс numl.Math.Kernels.RBFKernel

The Radial Basis Function (RBF) Kernel is a projection into infinite dimensional space and acts as a pseudo similarity measure in the projected inner product space. It is governed by exp(||x - x'||2 / 2sigm^2)
Наследование: IKernel
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Compute ( Matrix m ) : Matrix

Computes RBF Kernel with provided free sigma parameter.

Compute ( Vector v1, Vector v2 ) : double

Computes the radial basis kernel function between the two input vectors.

Project ( Matrix m, Vector x ) : Vector

Projects vector into rbf kernel space.

RBFKernel ( ) : System
RBFKernel ( double sigma ) : System

ctor.

Описание методов

Compute() публичный Метод

Computes RBF Kernel with provided free sigma parameter.
public Compute ( Matrix m ) : Matrix
m Matrix Input Matrix.
Результат Matrix

Compute() публичный Метод

Computes the radial basis kernel function between the two input vectors.
public Compute ( Vector v1, Vector v2 ) : double
v1 numl.Math.LinearAlgebra.Vector Vector one.
v2 numl.Math.LinearAlgebra.Vector Vector two.
Результат double

Project() публичный Метод

Projects vector into rbf kernel space.
public Project ( Matrix m, Vector x ) : Vector
m Matrix RBF Kernel Matrix.
x numl.Math.LinearAlgebra.Vector Vector in original space.
Результат numl.Math.LinearAlgebra.Vector

RBFKernel() публичный Метод

public RBFKernel ( ) : System
Результат System

RBFKernel() публичный Метод

ctor.
public RBFKernel ( double sigma ) : System
sigma double Input Parameter.
Результат System