C# Class Encog.Neural.Networks.Training.Competitive.Neighborhood.NeighborhoodSingleRBF

A single dimension neighborhood function, based on an RBF.
Inheritance: INeighborhoodFunction
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode Description
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.

Method Details

Function() public méthode

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.
Résultat double

NeighborhoodSingleRBF() public méthode

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.
Résultat System