资源简介
利用k-means对UCI数据集进行聚类分析,程序中列举了数据集wine和heart数据集
代码片段和文件信息
function score = accuracy(cluster_labelstrue_labels)
%ACCURACY Compute clustering accuracy using the true and cluster labels and
% return the value in ‘score‘.
%
% Input : true_labels : N-by-1 vector containing true labels
% cluster_labels : N-by-1 vector containing cluster labels
%
% Output : score : clustering accuracy
%
% Author : Wen-Yen Chen (wychen@alumni.cs.ucsb.edu)
% Chih-Jen Lin (cjlin@csie.ntu.edu.tw)
% Compute the confusion matrix ‘cmat‘ where
% col index is for true label (CAT)
% row index is for cluster label (CLS).
cluster_labels=cluster_labels(:);
true_labels=true_labels(:);
n = length(true_labels);
cat = spconvert([(1:n)‘ true_labels ones(n1)]);
cls = spconvert([(1:n)‘ cluster_labels ones(n1)]);
cls = cls‘;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 10151 2013-04-17 19:59 UCI\accuracy.m
文件 3589 2013-04-17 20:48 UCI\heart.mat
文件 4565 2013-04-17 22:07 UCI\k_means.asv
文件 3494 2013-04-17 22:10 UCI\k_means.m
文件 3044 2013-05-02 20:47 UCI\MAIN.asv
文件 1620 2013-05-02 21:02 UCI\MAIN.m
文件 1099 2013-04-17 22:09 UCI\orth_init.m
文件 211 2013-05-02 20:55 UCI\parzen.m
文件 1502 2013-04-17 21:37 UCI\UCI.asv
文件 1899 2013-04-18 14:23 UCI\UCI.m
文件 5387 2013-04-17 20:50 UCI\wine.mat
目录 0 2013-05-03 10:58 UCI
----------- --------- ---------- ----- ----
36561 12
相关资源
- svm_matlab 用SVM算法实现聚类与分类的例
- kfcm2828080
- SA_GA 基于遗传模拟退火算法的聚类算
- Kmeans-MATLAB 该代码能够实现K均值聚类
- FCM-vs-ESSC 模糊聚类图像分割
- spectral-clustering 外国人编写的实现谱聚
- FCMLSM 改进的基于整合空间的模糊聚类
- FCM 模糊C均值聚类算法
- kmeans 基于K均值的自然图像聚类方法
- spectral_Clustering 用于聚类分析的谱聚类
- abc-clustering
- Affinity-Propagation AP聚类算法
- Kmeans 自适应K-均值聚类算法
- sparse-subspace-clustering 关于稀疏子空间
- Kmeans 使用K均值做聚类分析来进行图像
- STING_code 基于格网的空间聚类算法ST
- pso_fcm 结合pso的fcm算法
- kmeans 改进的均值聚类算法
- C_PS_matlab 粒子群聚类算法:改进原有
- Fuzzy-clustering-image-segmentation
- kfcm
- sc 实现SC谱聚类算法
- k-means-for-iris 利用K均值聚类对鸢尾花
- FCM聚类算法实现图像分割
- k-medoids聚类matlab实现
- 经典模糊聚类实现医学图像分割.m
- som自组织神经聚类算法matlab.zip
- 基于K-means聚类算法的图像分割的MAT
- 基于聚类的方法提取关键帧
- K-means聚类分析Iris数据集模式识别
评论
共有 条评论