Suppose that I performed clustering of iris.data using SOM Toolbox in Matlab. After clustering, I have an input vector and I want to see which cluster this input belongs to? Any tips please on how to map an input pattern into a trained SOM map.
|
feedback
|
|
Once you have trained the SOM, you can classify a new input vector by assigning it to the nearest node in the grid (Best Matching Unit BMU) which have the closest weights. We predict the majority class of the training vectors belonging to that BMU node as the target class of the test instance. | ||||
|
feedback
|
X = som_read_data('iris.data'); XNorm = som_normalize(X,'var'); SM = som_make(XNorm); som_show(SM,'umat');I can see in the documentation (even for NNClustering tool in MATLAB) explanation about visulaization but cannot see how to save the resulted weights in the trained map? How can I see the associated samples with each cluster? And if I have an input pattern [4.9 3.1 1.5 0.1], how to decide which cluster is this input pattern into? – PhD Student Jul 17 '11 at 20:45