C# Класс Encog.Neural.Networks.Training.Competitive.Neighborhood.NeighborhoodSingleRBF

A single dimension neighborhood function, based on an RBF.
Наследование: INeighborhoodFunction
Показать файл Открыть проект

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

Метод Описание
Function ( int currentNeuron, int bestNeuron ) : double

Determine how much the current neuron should be affected by training based on its proximity to the winning neuron.

NeighborhoodSingleRBF ( IRadialBasisFunction radial ) : System

Construct the neighborhood function with the specified radial function. Generally this will be a Gaussian function but any RBF should do.

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

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

Determine how much the current neuron should be affected by training based on its proximity to the winning neuron.
public Function ( int currentNeuron, int bestNeuron ) : double
currentNeuron int THe current neuron being evaluated.
bestNeuron int The winning neuron.
Результат double

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

Construct the neighborhood function with the specified radial function. Generally this will be a Gaussian function but any RBF should do.
public NeighborhoodSingleRBF ( IRadialBasisFunction radial ) : System
radial IRadialBasisFunction The radial basis function to use.
Результат System