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

1-为什么地图中有一些点没有任何标签(A、B或C)?
2-我知道在每个节点中有超过1个元素。一个类型的多少个元素必须在node中,才能在map中看到它的标签?
3-灰色是什么意思?黑色是否意味着有很多点与该单元格匹配?或者这意味着那个细胞和最近的细胞之间有很大的距离?
4-为什么在任何黑色单元格中都没有任何标签(A、B或C)?后来我意识到这张地图的大小是10x5,并且标签只能定位在点上。对吗?
提前谢谢你!!
发布于 2017-03-21 08:34:03
这不是SOM映射。这是一个U矩阵,它显示了节点之间的距离。这将解释为什么每个节点和每个其他节点之间存在差距。在U矩阵中,当两个节点靠近时,中间六边形的阴影较浅,而当两个节点距离较远时,阴影较深。有关详细信息,请参阅http://users.ics.aalto.fi/jhollmen/dippa/node24.html。
每个单元格中的标签数量取决于“模式”。我不确定您使用的是什么实现,但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 kepthttps://stackoverflow.com/questions/42670453
复制相似问题