Method | 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.
|
|
NeighborhoodBubble ( int radius ) : System |
Create a bubble neighborhood function that will return 1.0 (full update) for any neuron that is plus or minus the width distance from the winning neuron.
|
public Function ( int currentNeuron, int bestNeuron ) : double | ||
currentNeuron | int | THe current neuron being evaluated. |
bestNeuron | int | The winning neuron. |
return | double |
public NeighborhoodBubble ( int radius ) : System | ||
radius | int | bubble, is actually two times this parameter. |
return | System |