public interface NeighborhoodFunction
| Modifier and Type | Method and Description |
|---|---|
double |
function(int currentNeuron,
int bestNeuron)
Determine how much the current neuron should be affected by training
based on its proximity to the winning neuron.
|
double |
getRadius() |
void |
setRadius(double radius)
Set the radius.
|
double function(int currentNeuron,
int bestNeuron)
currentNeuron - THe current neuron being evaluated.bestNeuron - The winning neuron.double getRadius()
void setRadius(double radius)
radius - The new radius.