Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
99 views

Is the location of a neuron in a Self-Organizing Map dependent on its weight?

I've looked at a lot of theoretical examples of SOMs, but one thing is not really clear to me: is the location of nodes dependent on their weights? For example, will nodes with a larger weight be on ...
2
votes
1answer
707 views

Hexagonal Self-Organizing map in Python

I am looking for hexagonal self-organizing map on Python. ready module. If one exists. way to plot hexagonal cell algorithms to work with hexagonal cells as array or smth else About: A ...
1
vote
2answers
106 views

how to make a dictionary that can hold more than 1 data?

i've been trying to modify the program so that it could accept more than one data for a single alphabet character for example letter "A". there were some sort of ContainsKey function that allow only ...
1
vote
1answer
62 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
288 views

Matlab SOM Toolbox U-Matrix Visualization

I'm using the SOM Toolbox to analyze data collected from a database of cars. My problem is when visualizing the Unified Distance Matrix. Quoting the documentation for som_umat: Compute and return ...
1
vote
1answer
157 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
103 views

Self Organizing maps Vs k-means

Does anyone know how well does Self Organizing Maps(SOM) compare to k-means? I believe usually in the color space,such as RGB, SOM is a better method to cluster colors together as there is overlap in ...
1
vote
2answers
600 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
77 views

supervised training of SOM in MATLAB

I have a labelled data set, each data entry is of six dimensional. Each data entry is pre-labelled as belonging to one of 10 clusters. I would like to train a SOM to fit this labelled data set. In ...
0
votes
2answers
48 views

the dimensional reduction issues in self-organizing map (SOM)

Self organizing map is claimed to be able to visualize/cluster the high-dimensional data on a smaller dimensional space. I have some difficulties in understanding this statement. Consider a ...
0
votes
2answers
99 views

Self Organizing maps(SOM) not effective in clustering images in the color space?

I am trying to reproduce the experiments on the ai-junkie website http://www.ai-junkie.com/ann/som/som1.html to cluster/group different colors together using Self Organizing maps(SOM) on a larger ...
0
votes
0answers
199 views

How to export the output of a SOM in MATLAB

Ok, so this question is related to my ongoing task of getting text data categorized, you can refer to this question for more details on how I approached this problem. I used the standard matlab ...
0
votes
1answer
682 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
621 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?
0
votes
2answers
178 views

Self organising Maps - Explanation required in layman terms

I need to develop a flash tutorial on Self organizing maps (in neural networks) to make people understand it easily. I need some good example so that even a beginner can understand it easily. Please ...