0

如果您查看此 SOM 地图,我有一些查询要完全了解 SOM 地图的工作原理:

索姆地图

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

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

3 - 灰色的含义是什么?黑色是否意味着有很多点与该单元格匹配?或者这是否意味着该单元格和附近的单元格之间有很大的距离?

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

先感谢您!!

4

1 回答 1

1

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

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

% 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
于 2017-03-21T00:34:03.367 回答