【问题标题】:SOM map full understandingSOM图完全理解
【发布时间】:2017-07-28 23:15:18
【问题描述】:

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

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

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

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

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

提前谢谢你!!

【问题讨论】:

    标签: som self-organizing-maps


    【解决方案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
    

    【讨论】:

    • 非常感谢。很有用!
    猜你喜欢
    • 1970-01-01
    • 2018-05-13
    • 2014-06-19
    • 1970-01-01
    • 2012-04-29
    • 1970-01-01
    • 1970-01-01
    • 2021-12-19
    • 1970-01-01
    相关资源
    最近更新 更多