作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
过去几个月我一直在研究自组织映射(SOM)。但是我在理解降维部分仍然有些困惑。你能提出任何简单的方法来理解 SOM 在任何现实世界数据集上的实际工作吗(就像来自 UCI 存储库的数据集一样)。
最佳答案
好的,首先请引用之前的一些相关问题,这将使您更好地了解 SOM 的降维和可视化属性。
Plotting the Kohonen map - Understanding the visualization ,
Interpreting a Self Organizing Map .
第二个简单的案例来测试 SOM 的属性:
% create a dataset with 3 clusters and 3 features
x=[ones(1000,1)*0.5,zeros(1000,1),zeros(1000,1)];
x=[x;[zeros(1000,1),ones(1000,1)*0.5,zeros(1000,1)]];
x=[x;[zeros(1000,1),zeros(1000,1),ones(1000,1)*0.5]];
x=x+rand(3000,3)*0.2;
x=x';
%define a 20x20 SOM through MATLAB "selforgmap" function, and train using the "train"
net = selforgmap([20 20]);
[net,tr] = train(net,x);
%display the number of hits, neighbour distance, and plane maps figure,plotsomplanes(net)
figure,plotsomnd(net)
关于som - 使用自组织映射的降维,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27086222/
我是一名优秀的程序员,十分优秀!