PRTools contents |
SOM
W = SOM(X,K)
Train a 2D SOM on dataset X. In K the size of the map is defined. The map can maximally be 2D. When K contains just a single value, it is assumed that a 1D map should be trained. The output of the mapping contains the (negative) distances to all neurons. To obtain the index
of | the closest neuron, do A*W*LABELD.
W = SOM(X,K,NRRUNS,ETA,H)
|
There is the extra feature, that NRRUNS, ETA and H can be vectors, such that it can be run several iterations using larger ETA and H, and after that with smaller values.
Default: K=[5 5], NRRUNS = [20 40 40], ETA = [0.5 0.3 0.1], H = [0.6 0.2 0.01];
See also: pca, kmeans, plotsom, prex_som
PRTools contents |