C# Класс numl.Math.Functions.Cost.CofiCostFunction

Default Collaborative Filtering cost function.
Наследование: CostFunction
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
ComputeCost ( Vector theta ) : double

Compute the error cost of the given Theta parameter for the training and label sets

ComputeGradient ( Vector theta ) : Vector

Compute the error cost of the given Theta parameter for the training and label sets

Initialize ( ) : void

Initialization method for performing custom actions prior to being optimized.

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

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

Compute the error cost of the given Theta parameter for the training and label sets
public ComputeCost ( Vector theta ) : double
theta numl.Math.LinearAlgebra.Vector Learning Theta parameters
Результат double

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

Compute the error cost of the given Theta parameter for the training and label sets
public ComputeGradient ( Vector theta ) : Vector
theta numl.Math.LinearAlgebra.Vector Learning Theta parameters
Результат numl.Math.LinearAlgebra.Vector

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

Initialization method for performing custom actions prior to being optimized.
public Initialize ( ) : void
Результат void