SOM图全解

SOM map full understanding

我有一些疑问要完全了解 SOM 映射的工作原理,如果您查看此 SOM 映射:

1 - 为什么地图中有些点没有任何标签(A、B 或 C)?

2 - 我知道在每个节点中有超过 1 个元素。节点中必须有多少个类型的元素才能在地图中看到其标签?

3 - 灰色的含义是什么?黑色是否意味着有很多点与该单元格匹配?还是说那个小区和附近的小区有很大的距离?

4 - 为什么黑色单元格中没有任何标签(A、B 或 C)?后来我才意识到这张地图的大小是 10 x 5,标签只能位于点上。对吗?

提前致谢!!

这不是 SOM 地图。它是一个 U 矩阵,显示节点之间的距离。这将解释为什么每个节点和其他每个节点之间都有间隙。在U-Matrix中,当两个节点彼此靠近时,中间六边形的阴影较浅,当它们相距较远时,颜色较深。有关详细信息,请参阅 http://users.ics.aalto.fi/jhollmen/dippa/node24.html

每个单元格中的标签数量取决于 'mode'。我不确定您使用的是什么实现,但 SOM 工具箱的模式是:

% From https://github.com/ilarinieminen/SOM-Toolbox/blob/master/som/som_autolabel.m
% The modes:
%  'add':   all labels from sFrom are added to sTo (even multiple
%           copies of same)  
%  'add1':  only one instance of each label is kept
%  'freq':  only one instance of each label is kept and '(#)', where 
%           # is the frequency of the label, is added to the end of 
%           the label. Labels are ordered according to frequency. 
%  'vote':  only the label with most instances is kept