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

Logistic Kernel for computing the similarity between the inner product space. logit(L * xi * xj)
Наследование: IKernel
Показать файл Открыть проект

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

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

Computes a Logistic Kernel matrix from the given input matrix.

Compute ( Vector v1, Vector v2 ) : double

Computes the logistic kernel function between the two input vectors.

LogisticKernel ( ) : System

Default constructor (Sigmoid logit function).

Project ( Matrix m, Vector x ) : Vector

Projects vector into a logistic kernel space.

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

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

Computes a Logistic Kernel matrix from the given input matrix.
public Compute ( Matrix m ) : Matrix
m Matrix Input Matrix.
Результат Matrix

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

Computes the logistic 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

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

Default constructor (Sigmoid logit function).
public LogisticKernel ( ) : System
Результат System

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

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