edu.udo.cs.yale.tools.math.som
Class KohonenNet
java.lang.Object
java.lang.Thread
edu.udo.cs.yale.tools.math.som.KohonenNet
- All Implemented Interfaces:
- java.lang.Runnable
public class KohonenNet
- extends java.lang.Thread
This class can be used to train a Kohonen net.
- Version:
- $Id$
- Author:
- Sebastian Land
Nested classes/interfaces inherited from class java.lang.Thread |
java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler |
Fields inherited from class java.lang.Thread |
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY |
Methods inherited from class java.lang.Thread |
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
randomSeed
private long randomSeed
netDimension
private int netDimension
netDimensions
private int[] netDimensions
phase
private int phase
trainingSteps
private int trainingSteps
progressListener
private java.util.ArrayList<ProgressListener> progressListener
nodes
private KohonenNode[] nodes
distanceFunction
private DistanceFunction distanceFunction
adaptionFunction
private AdaptionFunction adaptionFunction
data
private KohonenTrainingsData data
randomGenerator
private java.util.Random randomGenerator
cubeNodeCounter
private int cubeNodeCounter
cubeEdgeLength
private int cubeEdgeLength
cubeEdgeLengths
private int[] cubeEdgeLengths
cubeOffset
private int[] cubeOffset
KohonenNet
public KohonenNet(KohonenTrainingsData data)
init
public void init(int dataDimension,
int[] netDimensions,
boolean hexagonal)
run
public void run()
- Specified by:
run
in interface java.lang.Runnable
- Overrides:
run
in class java.lang.Thread
train
public void train()
cubeHasNext
private boolean cubeHasNext()
cubeNext
private int cubeNext()
cube
private void cube(int cubeEdgeLength,
int[] offset)
apply
public int[] apply(double[] data)
setRandomSeed
public void setRandomSeed(long seed)
setDistanceFunction
public void setDistanceFunction(DistanceFunction function)
setAdaptionFunction
public void setAdaptionFunction(AdaptionFunction function)
setTrainingRounds
public void setTrainingRounds(int rounds)
getDistance
public double getDistance(double[] point1,
double[] point2)
getNodeWeights
public double[] getNodeWeights(int[] coords)
getNodeDistance
public double getNodeDistance(int nodeIndex)
getBestFittingNode
private int getBestFittingNode(double[] dataVector)
getCoordinatesOfIndex
private int[] getCoordinatesOfIndex(int index,
int[] dimensions)
getCoordinatesOfIndex
private int[] getCoordinatesOfIndex(int index)
getIndexOfCoordinates
public int getIndexOfCoordinates(int[] coordinates)
getIndexOfCoordinates
private int getIndexOfCoordinates(int[] coordinates,
int[] dimensions)
addArrays
private int[] addArrays(int[] array,
int[] adder)
addArray
private int[] addArray(int[] array,
int adder)
setArray
private int[] setArray(int[] array,
int value)
addProgressListener
public void addProgressListener(ProgressListener listener)
updateProgressListener
public void updateProgressListener(int value)
informProgressExit
public void informProgressExit()
Copyright © 2001-2006