Tagged Questions

1
vote
1answer
70 views

Why is there a need for the number of iterations in the Self-Organizing Map?

:) While I was defending my thesis proposal, one of my professors asked me why do we have to specify the number of iterations in SOM? He said, there should've been a convergence criterion for us to ...
1
vote
1answer
173 views

Find the cluster of an input pattern

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 ...
1
vote
2answers
640 views

Kohonen SOM Maps: Normalizing the input with unknown range

According to "Introduction to Neural Networks with Java By Jeff Heaton", the input to the Kohonen neural network must be the values between -1 and 1. It is possible to normalize inputs where the ...
1
vote
2answers
2k views

Self Organizing Map (SOM) Implementation

I'm looking for a C, C++ or Java based SOM implementation with licensing applicable for commercial use (non-zero cost is okay). So far I'm aware that there exists SOM_PAK (from Kohonen), but the ...
0
votes
1answer
719 views

Self-Organizing Maps (SOM) problem in MATLAB

I have a text file that include data. My text file: young, myopic, no, reduced, no young, myopic, no, normal, soft young, myopic, yes, reduced, no young, myopic, yes, normal, hard young, hyperopia, ...
0
votes
1answer
655 views

Convergence criterion for (batch) SOM (Self-Organizing Map, aka “Kohonen Map”)?

I like to stop the execution when Batch SOM becomes converged. What error function can I use to determine the convergence?